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

Dan Gohman djg at cray.com
Mon Sep 24 12:25:06 PDT 2007


Author: djg
Date: Mon Sep 24 14:25:06 2007
New Revision: 42268

URL: http://llvm.org/viewvc/llvm-project?rev=42268&view=rev
Log:
Fix the syntax for the .loc directive in preparation for using it.

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=42268&r1=42267&r2=42268&view=diff

==============================================================================
--- llvm/trunk/lib/Target/X86/X86InstrInfo.td (original)
+++ llvm/trunk/lib/Target/X86/X86InstrInfo.td Mon Sep 24 14:25:06 2007
@@ -2434,7 +2434,7 @@
 
 def DWARF_LOC   : I<0, Pseudo, (outs),
                     (ins i32imm:$line, i32imm:$col, i32imm:$file),
-                    "; .loc ${file:debug}, ${line:debug}, ${col:debug}",
+                    ".loc\t${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