mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-02-08 21:32:39 +00:00
Fix build failure of povray
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@28473 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
5d634ce466
commit
8e2a04e21d
@ -757,8 +757,10 @@ static unsigned getCRIdxForSetCC(ISD::CondCode CC, bool& Inv) {
|
||||
case ISD::SETULE:
|
||||
case ISD::SETLE: Inv = true; return 1;
|
||||
case ISD::SETOEQ: // FIXME: This is incorrect see PR642.
|
||||
case ISD::SETUEQ:
|
||||
case ISD::SETEQ: Inv = false; return 2;
|
||||
case ISD::SETONE: // FIXME: This is incorrect see PR642.
|
||||
case ISD::SETUNE:
|
||||
case ISD::SETNE: Inv = true; return 2;
|
||||
case ISD::SETO: Inv = true; return 3;
|
||||
case ISD::SETUO: Inv = false; return 3;
|
||||
|
Loading…
x
Reference in New Issue
Block a user