sanitize constants representation
This commit is contained in:
parent
0298b6c4ca
commit
0791dd026e
3 changed files with 25 additions and 22 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue