diff options
Diffstat (limited to 'llvm/lib/Transforms/Scalar/GVN.cpp')
-rw-r--r-- | llvm/lib/Transforms/Scalar/GVN.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Transforms/Scalar/GVN.cpp b/llvm/lib/Transforms/Scalar/GVN.cpp index 56bc816c4f4..36c90f519f2 100644 --- a/llvm/lib/Transforms/Scalar/GVN.cpp +++ b/llvm/lib/Transforms/Scalar/GVN.cpp @@ -769,7 +769,7 @@ static bool isSafeReplacement(PHINode* p, Instruction* inst) { } Value* GVN::CollapsePhi(PHINode* p) { - Value* constVal = p->hasConstantValue(); + Value* constVal = p->hasConstantValue(DT); if (!constVal) return 0; Instruction* inst = dyn_cast<Instruction>(constVal); |