aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjohnvg2015-08-19 10:17:55 +0000
committerjohnvg2015-08-19 10:17:55 +0000
commit329778c4f70c47f582080f7fa2acaca598a3969f (patch)
tree76bcc313125cb0e249811e2c9a9f50313137771d
parentfix previous version, add return before next case in switch instruction (diff)
fix bug in FPrintF call
git-svn-id: https://svn.cs.ru.nl/repos/clean-compiler/trunk@2608 1f8540f1-abd5-4d5b-9d24-4c5ce8603e2d
-rw-r--r--backendC/CleanCompilerSources/instructions.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/backendC/CleanCompilerSources/instructions.c b/backendC/CleanCompilerSources/instructions.c
index b076f5f..9c79159 100644
--- a/backendC/CleanCompilerSources/instructions.c
+++ b/backendC/CleanCompilerSources/instructions.c
@@ -3139,9 +3139,9 @@ void GenUnboxedConsRecordDescriptor (SymbDef sdef,int tail_strict)
FPrintF (OutFile," %d %d ",asize,bsize);
GenUnboxedRecordLabelsReversedForRecord (tuple_arguments_state[0]);
if (ExportLocalLabels)
- FPrintF (OutFile,tail_strict ? "\"_Cons#!%s\"" : "\"_Cons#\"",asize,bsize,name);
+ FPrintF (OutFile,tail_strict ? "\"_Cons#!%s\"" : "\"_Cons#\"",name);
else
- FPrintF (OutFile,tail_strict ? "\"[#%s!]\"" : "\"[#%s]\"",asize,bsize,name);
+ FPrintF (OutFile,tail_strict ? "\"[#%s!]\"" : "\"[#%s]\"",name);
}
}
#endif