diff options
author | Kalle Raiskila <kalle.raiskila@nokia.com> | 2011-01-11 11:27:56 +0000 |
---|---|---|
committer | Kalle Raiskila <kalle.raiskila@nokia.com> | 2011-01-11 11:27:56 +0000 |
commit | b9505f6bed33c56e2e57f1f8782827cf9bf8613f (patch) | |
tree | 9cc75562bd5f2aca3cd6c8d55cf7b8e9a2476f9e /lib/Target/CellSPU/SPUNopFiller.cpp | |
parent | 48eec43fdb0f79b6e10677a3c74d6faa51edd897 (diff) |
Fix a thinko in 123226 that caused test failures on "other" platforms.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@123229 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/CellSPU/SPUNopFiller.cpp')
-rw-r--r-- | lib/Target/CellSPU/SPUNopFiller.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Target/CellSPU/SPUNopFiller.cpp b/lib/Target/CellSPU/SPUNopFiller.cpp index 54a5925d80..e2bd2d7f41 100644 --- a/lib/Target/CellSPU/SPUNopFiller.cpp +++ b/lib/Target/CellSPU/SPUNopFiller.cpp @@ -123,7 +123,7 @@ runOnMachineBasicBlock(MachineBasicBlock &MBB) else { J++; DEBUG( dbgs() <<"Padding basic block with LNOP\n"; ); - BuildMI(MBB, J, J->getDebugLoc(), TII->get(SPU::LNOP)); + BuildMI(MBB, J, DebugLoc(), TII->get(SPU::LNOP)); } isEvenPlace=true; } |