git.openpandora.org
/
pandora-kernel.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
34e1f2b
)
staging: lustre: fid,fld: expand the GOTO macro
author
Julia Lawall
<Julia.Lawall@lip6.fr>
Sat, 30 Aug 2014 14:41:23 +0000
(16:41 +0200)
committer
Greg Kroah-Hartman
<gregkh@linuxfoundation.org>
Sat, 30 Aug 2014 19:24:59 +0000
(12:24 -0700)
The semantic patch that makes this change is as follows:
(http://coccinelle.lip6.fr/)
// <smpl>
@@
identifier lbl;
identifier rc;
constant c;
@@
- GOTO(lbl,\(rc\|c\));
+ goto lbl;
@@
identifier lbl;
expression rc;
@@
- GOTO(lbl,rc);
+ rc;
+ goto lbl;
// </smpl>
Signed-off-by: Julia Lawall <Julia.Lawall@lip6.fr>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
No differences found