diff options
Diffstat (limited to 'llvm/lib/IR/DebugInfo.cpp')
-rw-r--r-- | llvm/lib/IR/DebugInfo.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/lib/IR/DebugInfo.cpp b/llvm/lib/IR/DebugInfo.cpp index 2a84e7b..9527c3e 100644 --- a/llvm/lib/IR/DebugInfo.cpp +++ b/llvm/lib/IR/DebugInfo.cpp @@ -960,8 +960,8 @@ unsigned llvm::getDebugMetadataVersionFromModule(const Module &M) { return 0; } -void Instruction::applyMergedLocation(DILocation *LocA, DILocation *LocB) { - setDebugLoc(DILocation::getMergedLocation(LocA, LocB)); +void Instruction::applyMergedLocation(DebugLoc LocA, DebugLoc LocB) { + setDebugLoc(DebugLoc::getMergedLocation(LocA, LocB)); } void Instruction::mergeDIAssignID( |