aboutsummaryrefslogtreecommitdiff
path: root/projects/Stacker/lib/compiler/StackerCompiler.cpp
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2004-03-31 03:49:47 +0000
committerChris Lattner <sabre@nondot.org>2004-03-31 03:49:47 +0000
commit91ef460285021b5bf43b3850f0f8958a09b8939c (patch)
tree8be960ee89ea7b68ba8977e7a202304ce3b20afe /projects/Stacker/lib/compiler/StackerCompiler.cpp
parent1438102576b94d6dac9bb18e8df291c4d632572d (diff)
Avoid TRUE and FALSE which apparently conflict with some macros on OSX
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@12566 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'projects/Stacker/lib/compiler/StackerCompiler.cpp')
-rw-r--r--projects/Stacker/lib/compiler/StackerCompiler.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/projects/Stacker/lib/compiler/StackerCompiler.cpp b/projects/Stacker/lib/compiler/StackerCompiler.cpp
index 1183979389..12151a537d 100644
--- a/projects/Stacker/lib/compiler/StackerCompiler.cpp
+++ b/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);