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
This commit is contained in:
Chris Lattner
2004-03-31 03:49:47 +00:00
parent 1438102576
commit 91ef460285
5 changed files with 16 additions and 16 deletions

View File

@ -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);