diff options
Diffstat (limited to 'llvm/projects/Stacker/lib/compiler/Lexer.l')
-rw-r--r-- | llvm/projects/Stacker/lib/compiler/Lexer.l | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/llvm/projects/Stacker/lib/compiler/Lexer.l b/llvm/projects/Stacker/lib/compiler/Lexer.l index 6087f883e5c..65f1a972d66 100644 --- a/llvm/projects/Stacker/lib/compiler/Lexer.l +++ b/llvm/projects/Stacker/lib/compiler/Lexer.l @@ -117,10 +117,10 @@ OutChar \>c {Colon} { return COLON; } {Semi} { return SEMI; } -TRUE { return TRUE; } -FALSE { return FALSE; } -ON { return TRUE; } -OFF { return FALSE; } +TRUE { return TRUETOK; } +FALSE { return FALSETOK; } +ON { return TRUETOK; } +OFF { return FALSETOK; } {Less} { return LESS; } LT { return LESS; } {More} { return MORE; } |