From 569fba6db9c12916bd2802a7ee46dc5609118e0b Mon Sep 17 00:00:00 2001 From: Edmund Grimley Evans Date: Tue, 17 Nov 2015 19:09:35 +0000 Subject: Merge the integer members of union CValue into "uint64_t i". --- tcc.h | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) (limited to 'tcc.h') diff --git a/tcc.h b/tcc.h index 5e86df6..ff846fd 100644 --- a/tcc.h +++ b/tcc.h @@ -354,13 +354,8 @@ typedef union CValue { long double ld; double d; float f; - int i; - unsigned int ui; - unsigned int ul; /* address (should be unsigned long on 64 bit cpu) */ - long long ll; - unsigned long long ull; + uint64_t i; struct CString *cstr; - addr_t ptr_offset; int tab[LDOUBLE_SIZE/4]; } CValue; -- cgit v1.3.1