mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-12-27 05:55:40 +00:00
Remove unnecessary cast.
llvm-svn: 83100
This commit is contained in:
parent
e5be8e79df
commit
5dcd8e1d86
@ -381,8 +381,7 @@ void SelectionDAGISel::SelectBasicBlock(BasicBlock *LLVMBB,
|
|||||||
if (MDDbgKind) {
|
if (MDDbgKind) {
|
||||||
// Update DebugLoc if debug information is attached with this
|
// Update DebugLoc if debug information is attached with this
|
||||||
// instruction.
|
// instruction.
|
||||||
if (MDNode *Dbg =
|
if (MDNode *Dbg = TheMetadata.getMD(MDDbgKind, I)) {
|
||||||
dyn_cast_or_null<MDNode>(TheMetadata.getMD(MDDbgKind, I))) {
|
|
||||||
DILocation DILoc(Dbg);
|
DILocation DILoc(Dbg);
|
||||||
DebugLoc Loc = ExtractDebugLocation(DILoc, MF->getDebugLocInfo());
|
DebugLoc Loc = ExtractDebugLocation(DILoc, MF->getDebugLocInfo());
|
||||||
SDL->setCurDebugLoc(Loc);
|
SDL->setCurDebugLoc(Loc);
|
||||||
@ -743,8 +742,7 @@ void SelectionDAGISel::SelectAllBasicBlocks(Function &Fn,
|
|||||||
if (MDDbgKind) {
|
if (MDDbgKind) {
|
||||||
// Update DebugLoc if debug information is attached with this
|
// Update DebugLoc if debug information is attached with this
|
||||||
// instruction.
|
// instruction.
|
||||||
if (MDNode *Dbg =
|
if (MDNode *Dbg = TheMetadata.getMD(MDDbgKind, BI)) {
|
||||||
dyn_cast_or_null<MDNode>(TheMetadata.getMD(MDDbgKind, BI))) {
|
|
||||||
DILocation DILoc(Dbg);
|
DILocation DILoc(Dbg);
|
||||||
DebugLoc Loc = ExtractDebugLocation(DILoc,
|
DebugLoc Loc = ExtractDebugLocation(DILoc,
|
||||||
MF.getDebugLocInfo());
|
MF.getDebugLocInfo());
|
||||||
|
Loading…
Reference in New Issue
Block a user