diff options
Diffstat (limited to 'llvm/lib/CodeGen/SelectionDAG/FastISel.cpp')
-rw-r--r-- | llvm/lib/CodeGen/SelectionDAG/FastISel.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/llvm/lib/CodeGen/SelectionDAG/FastISel.cpp b/llvm/lib/CodeGen/SelectionDAG/FastISel.cpp index 0b2e22486e3..593173d9c2c 100644 --- a/llvm/lib/CodeGen/SelectionDAG/FastISel.cpp +++ b/llvm/lib/CodeGen/SelectionDAG/FastISel.cpp @@ -2122,9 +2122,9 @@ FastISel::createMachineMemOperandFor(const Instruction *I) const { } else return nullptr; - bool IsNonTemporal = I->getMetadata(LLVMContext::MD_nontemporal) != nullptr; - bool IsInvariant = I->getMetadata(LLVMContext::MD_invariant_load) != nullptr; - const MDNode *Ranges = I->getMetadata(LLVMContext::MD_range); + bool IsNonTemporal = I->getMDNode(LLVMContext::MD_nontemporal) != nullptr; + bool IsInvariant = I->getMDNode(LLVMContext::MD_invariant_load) != nullptr; + const MDNode *Ranges = I->getMDNode(LLVMContext::MD_range); AAMDNodes AAInfo; I->getAAMetadata(AAInfo); |