summaryrefslogtreecommitdiff
path: root/gcc/final.c
diff options
context:
space:
mode:
authorYamaArashi <shadow962@live.com>2016-03-06 13:30:23 -0800
committerYamaArashi <shadow962@live.com>2016-03-06 13:31:31 -0800
commite91bc8b5058f55174ea1d7e967e4e9d38fd29cae (patch)
treebd02014c3d4f04ecdb1ff984bd4db82db403880c /gcc/final.c
parent1f01ff809a107816317c4ac8a7eff1cbd3700370 (diff)
get rid of HOST_BITS_PER_LONG
Diffstat (limited to 'gcc/final.c')
-rwxr-xr-xgcc/final.c20
1 files changed, 0 insertions, 20 deletions
diff --git a/gcc/final.c b/gcc/final.c
index 5175181..44e359e 100755
--- a/gcc/final.c
+++ b/gcc/final.c
@@ -2768,26 +2768,6 @@ asm_fprintf (FILE *file, char *p, ...)
fprintf (file, buf, va_arg (argptr, int));
break;
- case 'w':
- /* This is a prefix to the 'd', 'i', 'u', 'x', 'p', and 'X' cases,
- but we do not check for those cases. It means that the value
- is a HOST_WIDE_INT, which may be either `int' or `long'. */
-
-#if HOST_BITS_PER_WIDE_INT == HOST_BITS_PER_INT
-#else
-#if HOST_BITS_PER_WIDE_INT == HOST_BITS_PER_LONG
- *q++ = 'l';
-#else
- *q++ = 'l';
- *q++ = 'l';
-#endif
-#endif
-
- *q++ = *p++;
- *q = 0;
- fprintf (file, buf, va_arg (argptr, HOST_WIDE_INT));
- break;
-
case 'l':
*q++ = c;
*q++ = *p++;