diff options
author | Jim Laskey <jlaskey@mac.com> | 2006-01-05 01:25:28 +0000 |
---|---|---|
committer | Jim Laskey <jlaskey@mac.com> | 2006-01-05 01:25:28 +0000 |
commit | abf6d1784b2d4bbcb7d20ab64881f77d755059f6 (patch) | |
tree | 922ed43eb59093df7e5fa40d3b814177ed364d86 /lib/Target/PowerPC/PPCISelLowering.cpp | |
parent | d90eb7fb2435e2abedb4694edc44fa45642edbe9 (diff) |
Added initial support for DEBUG_LABEL allowing debug specific labels to be
inserted in the code.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@25104 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/PowerPC/PPCISelLowering.cpp')
-rw-r--r-- | lib/Target/PowerPC/PPCISelLowering.cpp | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/lib/Target/PowerPC/PPCISelLowering.cpp b/lib/Target/PowerPC/PPCISelLowering.cpp index 01d8f075b7..8eb4ac303a 100644 --- a/lib/Target/PowerPC/PPCISelLowering.cpp +++ b/lib/Target/PowerPC/PPCISelLowering.cpp @@ -94,8 +94,11 @@ PPCTargetLowering::PPCTargetLowering(TargetMachine &TM) // PowerPC does not have truncstore for i1. setOperationAction(ISD::TRUNCSTORE, MVT::i1, Promote); - // PowerPC doesn't have line number support yet. + // Support label based line numbers. setOperationAction(ISD::LOCATION, MVT::Other, Expand); + // FIXME - use subtarget debug flags + if (TM.getSubtarget<PPCSubtarget>().isDarwin()) + setOperationAction(ISD::DEBUG_LABEL, MVT::Other, Expand); // We want to legalize GlobalAddress and ConstantPool nodes into the // appropriate instructions to materialize the address. |