aboutsummaryrefslogtreecommitdiffstats
path: root/lib/Target/PowerPC/PPCInstrInfo.td
diff options
context:
space:
mode:
authorJim Laskey <jlaskey@mac.com>2006-01-04 15:04:11 +0000
committerJim Laskey <jlaskey@mac.com>2006-01-04 15:04:11 +0000
commit5bf6f25b4a888afaf3e37acd18c43186d45cac2e (patch)
treeb2007705505661cae56a30ea0e6910d5dd5b0774 /lib/Target/PowerPC/PPCInstrInfo.td
parent7d78a2ab7e3575561a15abd5bd386ea4a0301b23 (diff)
downloadexternal_llvm-5bf6f25b4a888afaf3e37acd18c43186d45cac2e.zip
external_llvm-5bf6f25b4a888afaf3e37acd18c43186d45cac2e.tar.gz
external_llvm-5bf6f25b4a888afaf3e37acd18c43186d45cac2e.tar.bz2
Add unique id to debug location for debug label use (work in progress.)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@25096 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/PowerPC/PPCInstrInfo.td')
-rw-r--r--lib/Target/PowerPC/PPCInstrInfo.td7
1 files changed, 4 insertions, 3 deletions
diff --git a/lib/Target/PowerPC/PPCInstrInfo.td b/lib/Target/PowerPC/PPCInstrInfo.td
index 395eab6..3d3424d 100644
--- a/lib/Target/PowerPC/PPCInstrInfo.td
+++ b/lib/Target/PowerPC/PPCInstrInfo.td
@@ -955,10 +955,11 @@ def V_SET0 : VXForm_setzero<1220, (ops VRRC:$vD),
// DWARF Pseudo Instructions
//
-def DWARF_LOC : Pseudo<(ops i32imm:$line, i32imm:$col, i32imm:$file),
- "; .loc $file, $line, $col",
+def DWARF_LOC : Pseudo<(ops i32imm:$line, i32imm:$col, i32imm:$file,
+ i32imm:$id),
+ "; .loc $file, $line, $col\nLdebug_loc$id:",
[(dwarf_loc (i32 imm:$line), (i32 imm:$col),
- (i32 imm:$file))]>;
+ (i32 imm:$file), (i32 imm:$id))]>;
//===----------------------------------------------------------------------===//
// PowerPC Instruction Patterns