diff options
author | Nathan Sidwell <nathan@codesourcery.com> | 2009-10-07 14:00:06 +0000 |
---|---|---|
committer | Nathan Sidwell <nathan@codesourcery.com> | 2009-10-07 14:00:06 +0000 |
commit | d31060819e9df1090eb3a0f901e2ae75b84090ba (patch) | |
tree | e70e8c20fad37265773d1410bfde8261761f86ba /gas/config | |
parent | 5a5829dd4345a105c089f266d9ba3624460757b7 (diff) | |
download | gdb-d31060819e9df1090eb3a0f901e2ae75b84090ba.zip gdb-d31060819e9df1090eb3a0f901e2ae75b84090ba.tar.gz gdb-d31060819e9df1090eb3a0f901e2ae75b84090ba.tar.bz2 |
* config/tc-arm.c (mapping_state, mapping_state_2): Make dummy
versions slightly more than nothing.
Diffstat (limited to 'gas/config')
-rw-r--r-- | gas/config/tc-arm.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gas/config/tc-arm.c b/gas/config/tc-arm.c index 1ffc273..2c70923 100644 --- a/gas/config/tc-arm.c +++ b/gas/config/tc-arm.c @@ -2577,8 +2577,8 @@ mapping_state_2 (enum mstate state, int max_chars) make_mapping_symbol (state, (valueT) frag_now_fix () - max_chars, frag_now); } #else -#define mapping_state(x) /* nothing */ -#define mapping_state_2(x, y) /* nothing */ +#define mapping_state(x) ((void)0) +#define mapping_state_2(x, y) ((void)0) #endif /* Find the real, Thumb encoded start of a Thumb function. */ |