aboutsummaryrefslogtreecommitdiff
path: root/tccgen.c
diff options
context:
space:
mode:
authorgrischka <grischka>2009-07-18 22:05:27 +0200
committergrischka <grischka>2009-07-18 22:05:27 +0200
commit3ea4acb9b9151442da2fb6057906aff4c094bcef (patch)
tree0a4fe1e8904f20937df8fe2f62f9f874bf4674bc /tccgen.c
parent719ba918dd14f6c86e47e1af10f31895e814c80e (diff)
downloadtinycc-3ea4acb9b9151442da2fb6057906aff4c094bcef.tar.gz
tinycc-3ea4acb9b9151442da2fb6057906aff4c094bcef.tar.bz2
pe32+ target: add in various #define's
Diffstat (limited to 'tccgen.c')
-rw-r--r--tccgen.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tccgen.c b/tccgen.c
index 3b62383..c59613b 100644
--- a/tccgen.c
+++ b/tccgen.c
@@ -2652,7 +2652,7 @@ the_end:
/* long is never used as type */
if ((t & VT_BTYPE) == VT_LONG)
-#ifndef TCC_TARGET_X86_64
+#if !defined TCC_TARGET_X86_64 || defined TCC_TARGET_PE
t = (t & ~VT_BTYPE) | VT_INT;
#else
t = (t & ~VT_BTYPE) | VT_LLONG;