diff options
author | Catherine Moore <clm@redhat.com> | 1998-08-19 16:40:22 +0000 |
---|---|---|
committer | Catherine Moore <clm@redhat.com> | 1998-08-19 16:40:22 +0000 |
commit | 38a29f02756ac516da522855f9c6b0169e30e53b (patch) | |
tree | e0f9903dd2c3a12313a9ef5eb0715bb56934b100 /gas/config | |
parent | 26be2423425e48a9c7fa8115560f838237f703b8 (diff) | |
download | gdb-38a29f02756ac516da522855f9c6b0169e30e53b.zip gdb-38a29f02756ac516da522855f9c6b0169e30e53b.tar.gz gdb-38a29f02756ac516da522855f9c6b0169e30e53b.tar.bz2 |
Add sanitization markers.
Diffstat (limited to 'gas/config')
-rw-r--r-- | gas/config/tc-arm.c | 4 | ||||
-rw-r--r-- | gas/config/tc-arm.h | 4 |
2 files changed, 6 insertions, 2 deletions
diff --git a/gas/config/tc-arm.c b/gas/config/tc-arm.c index 96957a5..8739c26 100644 --- a/gas/config/tc-arm.c +++ b/gas/config/tc-arm.c @@ -6406,14 +6406,14 @@ arm_canonicalize_symbol_name (name) return name; } - +/* start-sanitize-armelf */ boolean arm_fix_adjustable(fixP) fixS *fixP; { return 1; } - +/* end-sanitize-armelf */ boolean arm_validate_fix (fixP) diff --git a/gas/config/tc-arm.h b/gas/config/tc-arm.h index 055d1ae..e382662 100644 --- a/gas/config/tc-arm.h +++ b/gas/config/tc-arm.h @@ -95,11 +95,15 @@ extern void arm_frob_label PARAMS ((struct symbol *)); deliberately not been updated to mark assembler created stabs symbols as Thumb. */ +/* start-sanitize-armelf */ #ifdef OBJ_ELF #define obj_fix_adjustable(fixP) arm_fix_adjustable(fixP) #else +/* end-sanitize-armelf */ #define obj_fix_adjustable(fixP) 0 +/* start-sanitize-armelf */ #endif +/* end-sanitize-armelf */ /* We need to keep some local information on symbols. */ |