--- gcc/config/xm-vms.h 2018/04/24 16:53:27 1.1.1.1 +++ gcc/config/xm-vms.h 2018/04/24 16:56:45 1.1.1.2 @@ -53,3 +53,9 @@ the Free Software Foundation, 675 Mass A /* global const variables don't work, so turn off const-ness to prevent trouble with insn-output.c. */ #define const + +/* If compiled with GNU C, use the built-in alloca */ +#ifdef __GNUC__ +#define alloca __builtin_alloca +#endif +