summaryrefslogtreecommitdiff
path: root/src/codegen/Label.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/codegen/Label.java')
-rw-r--r--src/codegen/Label.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/codegen/Label.java b/src/codegen/Label.java
index a301ede..61403d8 100644
--- a/src/codegen/Label.java
+++ b/src/codegen/Label.java
@@ -41,6 +41,6 @@ public class Label {
public static String newVar() {
- return "_tmp" + (varDefCount++);
+ return "tmp" + (varDefCount++);
}
}