Commit e01a11572f99b5e9266f0d53bfd1be3c19544d77

Authored by blueswir1
1 parent f5069b26

Allow op_opt for all targets


git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@4063 c046a42c-6fe2-441c-8c8c-71466251a162
Showing 1 changed file with 4 additions and 2 deletions
... ... @@ -1240,10 +1240,12 @@ CPULogItem cpu_log_items[] = {
1240 1240 "show target assembly code for each compiled TB" },
1241 1241 { CPU_LOG_TB_OP, "op",
1242 1242 "show micro ops for each compiled TB" },
1243   -#ifdef TARGET_I386
1244 1243 { CPU_LOG_TB_OP_OPT, "op_opt",
1245   - "show micro ops before eflags optimization" },
  1244 + "show micro ops "
  1245 +#ifdef TARGET_I386
  1246 + "before eflags optimization and "
1246 1247 #endif
  1248 + "after liveness analysis" },
1247 1249 { CPU_LOG_INT, "int",
1248 1250 "show interrupts/exceptions in short format" },
1249 1251 { CPU_LOG_EXEC, "exec",
... ...