blob: 61bc749d14a67e341d82e98b8a233fc11306aea5 [file] [log] [blame]
Alex Bennée65255e82017-11-14 11:25:35 +01001// Remove unneeded tests before calling cpu_restore_state
2//
3// spatch --macro-file scripts/cocci-macro-file.h \
4// --sp-file ./scripts/coccinelle/cpu_restore_state.cocci \
5// --keep-comments --in-place --use-gitgrep --dir target
6@@
7expression A;
8expression C;
9@@
10-if (A) {
11 cpu_restore_state(C, A);
12-}
13@@
14expression A;
15expression C;
16@@
17- cpu_restore_state(C, A);
18- cpu_loop_exit(C);
19+ cpu_loop_exit_restore(C, A);