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
1 changed files with 4 additions and 0 deletions

View File

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