mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-04-03 00:01:39 +00:00
Test commit.
llvm-svn: 132558
This commit is contained in:
parent
e3190a1377
commit
fc0acdb90f
@ -31,7 +31,7 @@ using namespace llvm;
|
||||
static bool AreEquivalentAddressValues(const Value *A, const Value *B) {
|
||||
// Test if the values are trivially equivalent.
|
||||
if (A == B) return true;
|
||||
|
||||
|
||||
// Test if the values come from identical arithmetic instructions.
|
||||
// Use isIdenticalToWhenDefined instead of isIdenticalTo because
|
||||
// this function is only used when one address use dominates the
|
||||
@ -42,7 +42,7 @@ static bool AreEquivalentAddressValues(const Value *A, const Value *B) {
|
||||
if (const Instruction *BI = dyn_cast<Instruction>(B))
|
||||
if (cast<Instruction>(A)->isIdenticalToWhenDefined(BI))
|
||||
return true;
|
||||
|
||||
|
||||
// Otherwise they may not be equivalent.
|
||||
return false;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user