fix llvm variable size warning

This commit is contained in:
Vítor Santos Costa 2013-11-04 01:04:52 +00:00
parent c6b471d725
commit 0d038e4528

View File

@ -209,7 +209,11 @@ typedef struct PSEUDO {
CELL rnd1; CELL rnd1;
union { union {
Int oprnd2; Int oprnd2;
#if MIN_ARRAY == 0
CELL opseqt[MIN_ARRAY];
#else
CELL opseqt[1]; CELL opseqt[1];
#endif
} ops; } ops;
} PInstr; } PInstr;