diff options
author | Kay Tiong Khoo <kkhoo@perfwizard.com> | 2013-04-10 21:17:58 +0000 |
---|---|---|
committer | Kay Tiong Khoo <kkhoo@perfwizard.com> | 2013-04-10 21:17:58 +0000 |
commit | 49bbb35dfc592c8652a637f7c8d23219978a42f2 (patch) | |
tree | 81fed5cb8abeee0330c59a0a572e0e0b17a79f6a | |
parent | 8f5836510afb0ca19b1b04266407f3e1286d971a (diff) | |
download | external_llvm-49bbb35dfc592c8652a637f7c8d23219978a42f2.zip external_llvm-49bbb35dfc592c8652a637f7c8d23219978a42f2.tar.gz external_llvm-49bbb35dfc592c8652a637f7c8d23219978a42f2.tar.bz2 |
fixed to disassemble with tab after mnemonic rather than space
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@179215 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | lib/Target/X86/X86InstrSystem.td | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/Target/X86/X86InstrSystem.td b/lib/Target/X86/X86InstrSystem.td index 053417c..74683bc 100644 --- a/lib/Target/X86/X86InstrSystem.td +++ b/lib/Target/X86/X86InstrSystem.td @@ -515,8 +515,8 @@ let Predicates = [HasFSGSBase, In64BitMode] in { //===----------------------------------------------------------------------===// // INVPCID Instruction def INVPCID32 : I<0x82, MRMSrcMem, (outs), (ins GR32:$src1, i128mem:$src2), - "invpcid {$src2, $src1|$src1, $src2}", []>, OpSize, T8, + "invpcid\t{$src2, $src1|$src1, $src2}", []>, OpSize, T8, Requires<[In32BitMode]>; def INVPCID64 : I<0x82, MRMSrcMem, (outs), (ins GR64:$src1, i128mem:$src2), - "invpcid {$src2, $src1|$src1, $src2}", []>, OpSize, T8, + "invpcid\t{$src2, $src1|$src1, $src2}", []>, OpSize, T8, Requires<[In64BitMode]>; |