diff options
author | Jim Laskey <jlaskey@mac.com> | 2006-01-05 01:47:43 +0000 |
---|---|---|
committer | Jim Laskey <jlaskey@mac.com> | 2006-01-05 01:47:43 +0000 |
commit | e0bce71c42a021d897b51425dab16841a0ebc5bd (patch) | |
tree | 527769294d822d6a1af6d6643a4b053a7c7604a8 /lib/Target/PowerPC/PPCISelLowering.cpp | |
parent | abf6d1784b2d4bbcb7d20ab64881f77d755059f6 (diff) |
Had expand logic backward.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@25105 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/PowerPC/PPCISelLowering.cpp')
-rw-r--r-- | lib/Target/PowerPC/PPCISelLowering.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/Target/PowerPC/PPCISelLowering.cpp b/lib/Target/PowerPC/PPCISelLowering.cpp index 8eb4ac303a..9547b9e9d4 100644 --- a/lib/Target/PowerPC/PPCISelLowering.cpp +++ b/lib/Target/PowerPC/PPCISelLowering.cpp @@ -96,8 +96,9 @@ PPCTargetLowering::PPCTargetLowering(TargetMachine &TM) // Support label based line numbers. setOperationAction(ISD::LOCATION, MVT::Other, Expand); + setOperationAction(ISD::DEBUG_LOC, MVT::Other, Expand); // FIXME - use subtarget debug flags - if (TM.getSubtarget<PPCSubtarget>().isDarwin()) + if (!TM.getSubtarget<PPCSubtarget>().isDarwin()) setOperationAction(ISD::DEBUG_LABEL, MVT::Other, Expand); // We want to legalize GlobalAddress and ConstantPool nodes into the |