diff options
author | Alan Modra <amodra@gmail.com> | 2009-03-26 02:41:12 +0000 |
---|---|---|
committer | Alan Modra <amodra@gmail.com> | 2009-03-26 02:41:12 +0000 |
commit | 0cc9e1d3850f3318a73d5258d018d3a7886afd31 (patch) | |
tree | 3144aa527ffedfd41aee915b197a0fd9fac0e8e9 /gas/config/tc-i386.c | |
parent | 78485d59c67238c52451c48fe22fed2b865ef4e2 (diff) | |
download | gdb-0cc9e1d3850f3318a73d5258d018d3a7886afd31.zip gdb-0cc9e1d3850f3318a73d5258d018d3a7886afd31.tar.gz gdb-0cc9e1d3850f3318a73d5258d018d3a7886afd31.tar.bz2 |
PR 10005
* config/tc-i386.c (reloc): Don't abort on lack of required
reloc type.
Diffstat (limited to 'gas/config/tc-i386.c')
-rw-r--r-- | gas/config/tc-i386.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/gas/config/tc-i386.c b/gas/config/tc-i386.c index 91836ea..ed4ab93 100644 --- a/gas/config/tc-i386.c +++ b/gas/config/tc-i386.c @@ -2433,8 +2433,7 @@ reloc (unsigned int size, sign > 0 ? "signed" : "unsigned", size); } - abort (); - return BFD_RELOC_NONE; + return NO_RELOC; } /* Here we decide which fixups can be adjusted to make them relative to |