aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDan Gohman <gohman@apple.com>2007-07-26 15:24:15 +0000
committerDan Gohman <gohman@apple.com>2007-07-26 15:24:15 +0000
commitb6bbe39ff98cec74bd6a16ec556b07ed2811dd43 (patch)
tree5d73d9d6e320436628ce96840525e286e1ddf974
parent1704c2f9b9a69057beac1d159d914792d94ef01b (diff)
In the .loc directive, print the fields as "debug" fields, so they
don't get decorated as if for immediate fields for instructions. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@40529 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--lib/Target/X86/X86InstrInfo.td2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Target/X86/X86InstrInfo.td b/lib/Target/X86/X86InstrInfo.td
index e0d284f73f..906e7b210b 100644
--- a/lib/Target/X86/X86InstrInfo.td
+++ b/lib/Target/X86/X86InstrInfo.td
@@ -2498,7 +2498,7 @@ def TLS_tp : I<0, Pseudo, (outs GR32:$dst), (ins),
def DWARF_LOC : I<0, Pseudo, (outs),
(ins i32imm:$line, i32imm:$col, i32imm:$file),
- "; .loc $file, $line, $col",
+ "; .loc ${file:debug}, ${line:debug}, ${col:debug}",
[(dwarf_loc (i32 imm:$line), (i32 imm:$col),
(i32 imm:$file))]>;