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

Dan Gohman gohman at apple.com
Wed Nov 11 10:07:16 PST 2009


Author: djg
Date: Wed Nov 11 12:07:16 2009
New Revision: 86850

URL: http://llvm.org/viewvc/llvm-project?rev=86850&view=rev
Log:
Use a tab in INT3's asm string, for consistency.

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=86850&r1=86849&r2=86850&view=diff

==============================================================================
--- llvm/trunk/lib/Target/X86/X86InstrInfo.td (original)
+++ llvm/trunk/lib/Target/X86/X86InstrInfo.td Wed Nov 11 12:07:16 2009
@@ -543,7 +543,7 @@
 }
 
 // Trap
-def INT3 : I<0xcc, RawFrm, (outs), (ins), "int 3", []>;
+def INT3 : I<0xcc, RawFrm, (outs), (ins), "int\t3", []>;
 def INT : I<0xcd, RawFrm, (outs), (ins i8imm:$trap), "int\t$trap", []>;
 
 // PIC base construction.  This expands to code that looks like this:





More information about the llvm-commits mailing list