summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKay Tiong Khoo <kkhoo@perfwizard.com>2013-04-10 21:17:58 +0000
committerKay Tiong Khoo <kkhoo@perfwizard.com>2013-04-10 21:17:58 +0000
commit49bbb35dfc592c8652a637f7c8d23219978a42f2 (patch)
tree81fed5cb8abeee0330c59a0a572e0e0b17a79f6a
parent8f5836510afb0ca19b1b04266407f3e1286d971a (diff)
downloadllvm-49bbb35dfc592c8652a637f7c8d23219978a42f2.tar.gz
llvm-49bbb35dfc592c8652a637f7c8d23219978a42f2.tar.bz2
llvm-49bbb35dfc592c8652a637f7c8d23219978a42f2.tar.xz
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.td4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/Target/X86/X86InstrSystem.td b/lib/Target/X86/X86InstrSystem.td
index 053417ccde..74683bc3da 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]>;