diff options
author | YamaArashi <shadow962@live.com> | 2016-03-06 15:28:54 -0800 |
---|---|---|
committer | YamaArashi <shadow962@live.com> | 2016-03-06 15:28:54 -0800 |
commit | 60addc9c2c94b571f9ccfa4b4423aed3be886735 (patch) | |
tree | e20f3842130ff7b8f7e26942e8cf470d9239b1ea /gcc/config/arm | |
parent | e91bc8b5058f55174ea1d7e967e4e9d38fd29cae (diff) |
remove code for unused FP modes
Diffstat (limited to 'gcc/config/arm')
-rwxr-xr-x | gcc/config/arm/thumb.h | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/gcc/config/arm/thumb.h b/gcc/config/arm/thumb.h index 325374c..086ed52 100755 --- a/gcc/config/arm/thumb.h +++ b/gcc/config/arm/thumb.h @@ -182,15 +182,6 @@ extern int target_flags; fprintf (STREAM, "\n"); \ } -#define ASM_OUTPUT_LONG_DOUBLE(STREAM,VALUE) \ -do { char dstr[30]; \ - long l[3]; \ - REAL_VALUE_TO_TARGET_LONG_DOUBLE (VALUE, l); \ - REAL_VALUE_TO_DECIMAL (VALUE, "%.20g", dstr); \ - fprintf (STREAM, "\t.long 0x%lx,0x%lx,0x%lx\t%s long double %s\n", \ - l[0], l[1], l[2], ASM_COMMENT_START, dstr); \ - } while (0) - #define ASM_OUTPUT_DOUBLE(STREAM, VALUE) \ do { char dstr[30]; \ long l[2]; \ |