[llvm-commits] CVS: llvm/lib/Target/PowerPC/PPCInstrInfo.td
Jim Laskey
jlaskey at apple.com
Wed Jan 4 07:04:24 PST 2006
Changes in directory llvm/lib/Target/PowerPC:
PPCInstrInfo.td updated: 1.167 -> 1.168
---
Log message:
Add unique id to debug location for debug label use (work in progress.)
---
Diffs of the changes: (+4 -3)
PPCInstrInfo.td | 7 ++++---
1 files changed, 4 insertions(+), 3 deletions(-)
Index: llvm/lib/Target/PowerPC/PPCInstrInfo.td
diff -u llvm/lib/Target/PowerPC/PPCInstrInfo.td:1.167 llvm/lib/Target/PowerPC/PPCInstrInfo.td:1.168
--- llvm/lib/Target/PowerPC/PPCInstrInfo.td:1.167 Thu Dec 29 18:12:56 2005
+++ llvm/lib/Target/PowerPC/PPCInstrInfo.td Wed Jan 4 09:04:11 2006
@@ -955,10 +955,11 @@
// 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
More information about the llvm-commits
mailing list