diff options
author | Dan Gohman <gohman@apple.com> | 2009-11-11 18:07:16 +0000 |
---|---|---|
committer | Dan Gohman <gohman@apple.com> | 2009-11-11 18:07:16 +0000 |
commit | e94975ee64e8308526f1ab33f17f4f7229d9934b (patch) | |
tree | 9757c71ed0900e532c4ceec555ec4fa2e4685629 /lib/Target | |
parent | fc926c2395a2593afcdee68378a0ff8c6c54f2e3 (diff) | |
download | external_llvm-e94975ee64e8308526f1ab33f17f4f7229d9934b.zip external_llvm-e94975ee64e8308526f1ab33f17f4f7229d9934b.tar.gz external_llvm-e94975ee64e8308526f1ab33f17f4f7229d9934b.tar.bz2 |
Use a tab in INT3's asm string, for consistency.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@86850 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target')
-rw-r--r-- | lib/Target/X86/X86InstrInfo.td | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Target/X86/X86InstrInfo.td b/lib/Target/X86/X86InstrInfo.td index 9b82e1e..a79f262 100644 --- a/lib/Target/X86/X86InstrInfo.td +++ b/lib/Target/X86/X86InstrInfo.td @@ -543,7 +543,7 @@ let neverHasSideEffects = 1 in { } // 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: |