commit | 91ef460285021b5bf43b3850f0f8958a09b8939c | [log] [tgz] |
---|---|---|
author | Chris Lattner <sabre@nondot.org> | Wed Mar 31 03:49:47 2004 +0000 |
committer | Chris Lattner <sabre@nondot.org> | Wed Mar 31 03:49:47 2004 +0000 |
tree | 8be960ee89ea7b68ba8977e7a202304ce3b20afe | |
parent | 1438102576b94d6dac9bb18e8df291c4d632572d [diff] [blame] |
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
diff --git a/projects/Stacker/lib/compiler/StackerCompiler.cpp b/projects/Stacker/lib/compiler/StackerCompiler.cpp index 1183979..12151a5 100644 --- a/projects/Stacker/lib/compiler/StackerCompiler.cpp +++ b/projects/Stacker/lib/compiler/StackerCompiler.cpp
@@ -820,13 +820,13 @@ } // 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);