mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-06-18 11:24:01 +00:00
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:
@ -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);
|
||||
|
Reference in New Issue
Block a user