summaryrefslogtreecommitdiff
path: root/compiler_and_linker/unsorted/uDump.c
diff options
context:
space:
mode:
authorAsh Wolf <ninji@wuffs.org>2023-01-19 13:00:09 +0000
committerAsh Wolf <ninji@wuffs.org>2023-01-19 13:00:09 +0000
commit4d670146b4054e11e90227f96a3a1c66410e8d0b (patch)
tree8dca31cf9ee497ee59e833f48dd76c81aaef3cf5 /compiler_and_linker/unsorted/uDump.c
parent5d0bbb19cc133753cebda7099e46d4b2084336c6 (diff)
downloadMWCC-4d670146b4054e11e90227f96a3a1c66410e8d0b.tar.gz
MWCC-4d670146b4054e11e90227f96a3a1c66410e8d0b.zip
more cross-platform work
Diffstat (limited to 'compiler_and_linker/unsorted/uDump.c')
-rw-r--r--compiler_and_linker/unsorted/uDump.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/compiler_and_linker/unsorted/uDump.c b/compiler_and_linker/unsorted/uDump.c
index 58bc589..e7ed2d2 100644
--- a/compiler_and_linker/unsorted/uDump.c
+++ b/compiler_and_linker/unsorted/uDump.c
@@ -68,7 +68,7 @@ void SetupDumpIR(void) {
}
void CleanupDumpIR(void) {
-#ifdef CW_PATCH_DEBUG
+#ifdef CW_ENABLE_PCODE_DEBUG
// this code is not based on the original as we don't have it
if (outfile) {
fclose(outfile);
@@ -78,7 +78,7 @@ void CleanupDumpIR(void) {
}
void DumpIR(Statement *statements, Object *func) {
-#ifdef CW_PATCH_DEBUG
+#ifdef CW_ENABLE_PCODE_DEBUG
// this code is not based on the original as we don't have it
if (copts.debuglisting) {
if (!outfile)