summaryrefslogtreecommitdiff
path: root/src/cpu/SConscript
diff options
context:
space:
mode:
authorSteve Reinhardt <steve.reinhardt@amd.com>2015-10-06 17:26:50 -0700
committerSteve Reinhardt <steve.reinhardt@amd.com>2015-10-06 17:26:50 -0700
commit2511490c9cf988797afb613040c256fc06b684e0 (patch)
tree24b19e195ea25b13c6f1d1910295232d0ca8283c /src/cpu/SConscript
parent4b7c1fe61048a6d14c79c9bd857a7126ad56eb2d (diff)
downloadgem5-2511490c9cf988797afb613040c256fc06b684e0.tar.xz
sim: add ExecMacro to Exec* compound debug flags
Really should have been there in the first place, IMO. Makes debugging x86 execution a lot easier.
Diffstat (limited to 'src/cpu/SConscript')
-rw-r--r--src/cpu/SConscript6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/cpu/SConscript b/src/cpu/SConscript
index f2c4f2c06..656d9f1db 100644
--- a/src/cpu/SConscript
+++ b/src/cpu/SConscript
@@ -108,8 +108,8 @@ CompoundFlag('ExecAll', [ 'ExecEnable', 'ExecCPSeq', 'ExecEffAddr',
'ExecTicks', 'ExecMicro', 'ExecMacro', 'ExecUser', 'ExecKernel',
'ExecAsid', 'ExecFlags' ])
CompoundFlag('Exec', [ 'ExecEnable', 'ExecTicks', 'ExecOpClass', 'ExecThread',
- 'ExecEffAddr', 'ExecResult', 'ExecSymbol', 'ExecMicro', 'ExecFaulting',
- 'ExecUser', 'ExecKernel' ])
+ 'ExecEffAddr', 'ExecResult', 'ExecSymbol', 'ExecMicro', 'ExecMacro',
+ 'ExecFaulting', 'ExecUser', 'ExecKernel' ])
CompoundFlag('ExecNoTicks', [ 'ExecEnable', 'ExecOpClass', 'ExecThread',
- 'ExecEffAddr', 'ExecResult', 'ExecMicro', 'ExecFaulting',
+ 'ExecEffAddr', 'ExecResult', 'ExecMicro', 'ExecMacro', 'ExecFaulting',
'ExecUser', 'ExecKernel' ])