mirror of
https://github.com/bminor/binutils-gdb.git
synced 2025-12-29 10:30:46 +00:00
sim: trace: use existing defines for the useful mask
No point in duplicating the shift logic when we have macros already to keep that all unified.
This commit is contained in:
@@ -1,3 +1,7 @@
|
||||
2015-06-11 Mike Frysinger <vapier@gentoo.org>
|
||||
|
||||
* sim-trace.h (TRACE_USEFUL_MASK): Change to TRACE_xxx defines.
|
||||
|
||||
2015-06-11 Mike Frysinger <vapier@gentoo.org>
|
||||
|
||||
* sim-trace.h (WITH_TRACE_P): New define.
|
||||
|
||||
@@ -87,10 +87,7 @@ enum {
|
||||
splat on the screen everything under the sun making nothing easy to
|
||||
find. */
|
||||
#define TRACE_USEFUL_MASK \
|
||||
((1 << TRACE_INSN_IDX) \
|
||||
| (1 << TRACE_LINENUM_IDX) \
|
||||
| (1 << TRACE_MEMORY_IDX) \
|
||||
| (1 << TRACE_MODEL_IDX))
|
||||
(TRACE_insn | TRACE_linenum | TRACE_memory | TRACE_model)
|
||||
|
||||
/* Masks so WITH_TRACE can have symbolic values.
|
||||
The case choice here is on purpose. The lowercase parts are args to
|
||||
|
||||
Reference in New Issue
Block a user