On Mon, 28 May 2018 20:27:07 -0300 Philippe Mathieu-Daudé <f4...@amsat.org> wrote:
> Code change produced with: > $ git grep '#include "exec/exec-all.h"' | \ > cut -d: -f-1 | \ > xargs egrep -L > "(cpu_address_space_init|cpu_loop_|tlb_|tb_|GETPC|singlestep|TranslationBlock)" > | \ Hm, does this expression catch all files that need to include exec-all.h? The resulting patch seems fine, though. > xargs sed -i.bak '/#include "exec\/exec-all.h"/d' > > Signed-off-by: Philippe Mathieu-Daudé <f4...@amsat.org>