From: Dan Gohman Date: Mon, 24 Sep 2007 19:25:06 +0000 (+0000) Subject: Fix the syntax for the .loc directive in preparation for using it. X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=6b5766e27c402741b81725fc3bbc3ee234098194;p=oota-llvm.git Fix the syntax for the .loc directive in preparation for using it. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@42268 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Target/X86/X86InstrInfo.td b/lib/Target/X86/X86InstrInfo.td index dde59fc04be..17bb8e65fdc 100644 --- a/lib/Target/X86/X86InstrInfo.td +++ b/lib/Target/X86/X86InstrInfo.td @@ -2434,7 +2434,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:debug}, ${line:debug}, ${col:debug}", + ".loc\t${file:debug} ${line:debug} ${col:debug}", [(dwarf_loc (i32 imm:$line), (i32 imm:$col), (i32 imm:$file))]>;