Commit cc927263 by Doug Evans

Surround definition of VPROTO, VA_START with #ifndef VPROTO.

From-SVN: r6531
parent c77c9766
...@@ -151,6 +151,7 @@ typedef struct rtx_def ...@@ -151,6 +151,7 @@ typedef struct rtx_def
#endif #endif
#endif #endif
#ifndef VPROTO
#ifdef __STDC__ #ifdef __STDC__
#define VPROTO(ARGS) ARGS #define VPROTO(ARGS) ARGS
#define VA_START(va_list,var) va_start(va_list,var) #define VA_START(va_list,var) va_start(va_list,var)
...@@ -158,6 +159,7 @@ typedef struct rtx_def ...@@ -158,6 +159,7 @@ typedef struct rtx_def
#define VPROTO(ARGS) (va_alist) va_dcl #define VPROTO(ARGS) (va_alist) va_dcl
#define VA_START(va_list,var) va_start(va_list) #define VA_START(va_list,var) va_start(va_list)
#endif #endif
#endif
#define NULL_RTX (rtx) 0 #define NULL_RTX (rtx) 0
......
...@@ -987,6 +987,7 @@ union tree_node ...@@ -987,6 +987,7 @@ union tree_node
#endif #endif
#endif #endif
#ifndef VPROTO
#ifdef __STDC__ #ifdef __STDC__
#define VPROTO(ARGS) ARGS #define VPROTO(ARGS) ARGS
#define VA_START(va_list,var) va_start(va_list,var) #define VA_START(va_list,var) va_start(va_list,var)
...@@ -994,6 +995,7 @@ union tree_node ...@@ -994,6 +995,7 @@ union tree_node
#define VPROTO(ARGS) (va_alist) va_dcl #define VPROTO(ARGS) (va_alist) va_dcl
#define VA_START(va_list,var) va_start(va_list) #define VA_START(va_list,var) va_start(va_list)
#endif #endif
#endif
#define NULL_TREE (tree) NULL #define NULL_TREE (tree) NULL
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment