diff options
author | Chris Lattner <sabre@nondot.org> | 2004-03-31 03:49:47 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2004-03-31 03:49:47 +0000 |
commit | c0ba90e35c0731c717a8ac076c6082d2708f290c (patch) | |
tree | 151c2b8112940133daf5e8458dcb3866e3e91011 /llvm/projects/Stacker/lib/compiler/StackerCompiler.cpp | |
parent | 709f03e2dd830b1d94fa2e3280b0b757eb4c4915 (diff) | |
download | bcm5719-llvm-c0ba90e35c0731c717a8ac076c6082d2708f290c.tar.gz bcm5719-llvm-c0ba90e35c0731c717a8ac076c6082d2708f290c.zip |
Avoid TRUE and FALSE which apparently conflict with some macros on OSX
llvm-svn: 12566
Diffstat (limited to 'llvm/projects/Stacker/lib/compiler/StackerCompiler.cpp')
-rw-r--r-- | llvm/projects/Stacker/lib/compiler/StackerCompiler.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/projects/Stacker/lib/compiler/StackerCompiler.cpp b/llvm/projects/Stacker/lib/compiler/StackerCompiler.cpp index 11839793891..12151a537d6 100644 --- a/llvm/projects/Stacker/lib/compiler/StackerCompiler.cpp +++ b/llvm/projects/Stacker/lib/compiler/StackerCompiler.cpp @@ -820,13 +820,13 @@ StackerCompiler::handle_word( int tkn ) } // Logical Operations - case TRUE : // -- -1 + case TRUETOK : // -- -1 { if (echo) bb->setName("TRUE"); push_integer(bb,-1); break; } - case FALSE : // -- 0 + case FALSETOK : // -- 0 { if (echo) bb->setName("FALSE"); push_integer(bb,0); |