Avoid TRUE and FALSE which apparently conflict with some macros on OSX

llvm-svn: 12566
This commit is contained in:
Chris Lattner
2004-03-31 03:49:47 +00:00
parent 709f03e2dd
commit c0ba90e35c
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);