[llvm-commits] [llvm] r40529 - /llvm/trunk/lib/Target/X86/X86InstrInfo.td

Dan Gohman djg at cray.com
Thu Jul 26 08:24:15 PDT 2007


Author: djg
Date: Thu Jul 26 10:24:15 2007
New Revision: 40529

URL: http://llvm.org/viewvc/llvm-project?rev=40529&view=rev
Log:
In the .loc directive, print the fields as "debug" fields, so they
don't get decorated as if for immediate fields for instructions.

Modified:
    llvm/trunk/lib/Target/X86/X86InstrInfo.td

Modified: llvm/trunk/lib/Target/X86/X86InstrInfo.td
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Target/X86/X86InstrInfo.td?rev=40529&r1=40528&r2=40529&view=diff

==============================================================================
--- llvm/trunk/lib/Target/X86/X86InstrInfo.td (original)
+++ llvm/trunk/lib/Target/X86/X86InstrInfo.td Thu Jul 26 10:24:15 2007
@@ -2498,7 +2498,7 @@
 
 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))]>;
 





More information about the llvm-commits mailing list