aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHenry Kroll III <henry@comptune.com>2010-12-06 16:33:54 -0800
committerHenry Kroll III <henry@comptune.com>2010-12-06 16:36:00 -0800
commitf3d3ab5a6947b090ae3c3e5c76bf37319c72baae (patch)
tree90f3ce9d1041dda42b5e4cc8e842769563a295c8
parent10a08a372ff3f1968b5c873caa20d12b0b573e19 (diff)
downloadtinycc-f3d3ab5a6947b090ae3c3e5c76bf37319c72baae.tar.gz
tinycc-f3d3ab5a6947b090ae3c3e5c76bf37319c72baae.tar.bz2
tcc: move undef out of if block
-rw-r--r--tcc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tcc.c b/tcc.c
index 692d355..81a3265 100644
--- a/tcc.c
+++ b/tcc.c
@@ -236,9 +236,9 @@ void exec_other_tcc(TCCState *s, int argc,char **argv,int optarg)
execvp(arg, WIN32_CAST (argv));
error("cross compiler not found!");
exit(1);
-#undef WIN32_CAST
} else warning("-m32 infinite loop prevented");
} else warning("usupported option \"-m%s\"",optarg);
+#undef WIN32_CAST
#endif
}