mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-08-05 13:26:55 +00:00
Add completely hokey binary-and and binary-or operations to ConstantRange and
teach LazyValueInfo to use them. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@113196 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -602,6 +602,12 @@ LVILatticeVal LVIQuery::getBlockValue(BasicBlock *BB) {
|
||||
case Instruction::BitCast:
|
||||
Result.markConstantRange(LHSRange);
|
||||
break;
|
||||
case Instruction::And:
|
||||
Result.markConstantRange(LHSRange.binaryAnd(RHSRange));
|
||||
break;
|
||||
case Instruction::Or:
|
||||
Result.markConstantRange(LHSRange.binaryOr(RHSRange));
|
||||
break;
|
||||
|
||||
// Unhandled instructions are overdefined.
|
||||
default:
|
||||
|
Reference in New Issue
Block a user