summaryrefslogtreecommitdiff
path: root/gcc/combine.c
diff options
context:
space:
mode:
authorYamaArashi <shadow962@live.com>2016-02-16 01:27:33 -0800
committerYamaArashi <shadow962@live.com>2016-02-16 01:27:33 -0800
commitbbe0e72828710bb413ce01e22173adcc761ec7f8 (patch)
tree30ba7dc9393ebc3a971200ec612debbc8c029da9 /gcc/combine.c
parentecae31d652106c1f3b7429570de013c3bbf33e7a (diff)
remove ANSI_PROTOTYPES ifdefs
Diffstat (limited to 'gcc/combine.c')
-rwxr-xr-xgcc/combine.c8
1 files changed, 0 insertions, 8 deletions
diff --git a/gcc/combine.c b/gcc/combine.c
index 09c51ac..e66b374 100755
--- a/gcc/combine.c
+++ b/gcc/combine.c
@@ -9341,10 +9341,6 @@ gen_lowpart_for_combine (mode, x)
static rtx
gen_rtx_combine (enum rtx_code code, enum machine_mode mode, ...)
{
-#ifndef ANSI_PROTOTYPES
- enum rtx_code code;
- enum machine_mode mode;
-#endif
va_list p;
int n_args;
rtx args[3];
@@ -9355,10 +9351,6 @@ gen_rtx_combine (enum rtx_code code, enum machine_mode mode, ...)
VA_START (p, mode);
-#ifndef ANSI_PROTOTYPES
- code = va_arg (p, enum rtx_code);
- mode = va_arg (p, enum machine_mode);
-#endif
n_args = GET_RTX_LENGTH (code);
fmt = GET_RTX_FORMAT (code);