mirror of
https://github.com/RPCS3/llvm.git
synced 2025-04-03 05:41:42 +00:00
Remove unnecessary 'llvm::'.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@159841 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
6016a4a162
commit
0735e81b3a
@ -112,16 +112,16 @@ Function *DIDescriptor::getFunctionField(unsigned Elt) const {
|
|||||||
}
|
}
|
||||||
|
|
||||||
unsigned DIVariable::getNumAddrElements() const {
|
unsigned DIVariable::getNumAddrElements() const {
|
||||||
if (getVersion() <= llvm::LLVMDebugVersion8)
|
if (getVersion() <= LLVMDebugVersion8)
|
||||||
return DbgNode->getNumOperands()-6;
|
return DbgNode->getNumOperands()-6;
|
||||||
if (getVersion() == llvm::LLVMDebugVersion9)
|
if (getVersion() == LLVMDebugVersion9)
|
||||||
return DbgNode->getNumOperands()-7;
|
return DbgNode->getNumOperands()-7;
|
||||||
return DbgNode->getNumOperands()-8;
|
return DbgNode->getNumOperands()-8;
|
||||||
}
|
}
|
||||||
|
|
||||||
/// getInlinedAt - If this variable is inlined then return inline location.
|
/// getInlinedAt - If this variable is inlined then return inline location.
|
||||||
MDNode *DIVariable::getInlinedAt() const {
|
MDNode *DIVariable::getInlinedAt() const {
|
||||||
if (getVersion() <= llvm::LLVMDebugVersion9)
|
if (getVersion() <= LLVMDebugVersion9)
|
||||||
return NULL;
|
return NULL;
|
||||||
return dyn_cast_or_null<MDNode>(DbgNode->getOperand(7));
|
return dyn_cast_or_null<MDNode>(DbgNode->getOperand(7));
|
||||||
}
|
}
|
||||||
@ -734,7 +734,7 @@ DIVariable llvm::cleanseInlinedVariable(MDNode *DV, LLVMContext &VMContext) {
|
|||||||
// Insert inlined scope as 7th element.
|
// Insert inlined scope as 7th element.
|
||||||
for (unsigned i = 0, e = DV->getNumOperands(); i != e; ++i)
|
for (unsigned i = 0, e = DV->getNumOperands(); i != e; ++i)
|
||||||
i == 7 ?
|
i == 7 ?
|
||||||
Elts.push_back(llvm::Constant::getNullValue(Type::getInt32Ty(VMContext))):
|
Elts.push_back(Constant::getNullValue(Type::getInt32Ty(VMContext))):
|
||||||
Elts.push_back(DV->getOperand(i));
|
Elts.push_back(DV->getOperand(i));
|
||||||
return DIVariable(MDNode::get(VMContext, Elts));
|
return DIVariable(MDNode::get(VMContext, Elts));
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user