mirror of https://gitee.com/openkylin/qemu.git
20 lines
433 B
Plaintext
20 lines
433 B
Plaintext
// Remove unneeded tests before calling cpu_restore_state
|
|
//
|
|
// spatch --macro-file scripts/cocci-macro-file.h \
|
|
// --sp-file ./scripts/coccinelle/cpu_restore_state.cocci \
|
|
// --keep-comments --in-place --use-gitgrep --dir target
|
|
@@
|
|
expression A;
|
|
expression C;
|
|
@@
|
|
-if (A) {
|
|
cpu_restore_state(C, A);
|
|
-}
|
|
@@
|
|
expression A;
|
|
expression C;
|
|
@@
|
|
- cpu_restore_state(C, A);
|
|
- cpu_loop_exit(C);
|
|
+ cpu_loop_exit_restore(C, A);
|