sanitize constants representation

This commit is contained in:
Quentin Carbonneaux 2015-12-08 10:36:22 -05:00
parent 0298b6c4ca
commit 0791dd026e
3 changed files with 25 additions and 22 deletions

View file

@ -312,12 +312,15 @@ struct Tmp {
struct Con {
enum {
CUndef,
CNum,
CBits,
CAddr,
} type;
char flt;
char label[NString];
int64_t val;
union {
int64_t i;
double f;
} bits;
char flt;
};
typedef struct Addr Addr;