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 | 6f76c2106e528ef8ae52a866e93bbd912d2915b0 (patch) | |
tree | caa3d6015b5ee8b999885d133e0f4ab8b22d80bb /llvm/lib | |
parent | e49439920358d026269d425943e514dc9735bde3 (diff) | |
download | bcm5719-llvm-6f76c2106e528ef8ae52a866e93bbd912d2915b0.tar.gz bcm5719-llvm-6f76c2106e528ef8ae52a866e93bbd912d2915b0.zip |
fixed to disassemble with tab after mnemonic rather than space
llvm-svn: 179215
Diffstat (limited to 'llvm/lib')
-rw-r--r-- | llvm/lib/Target/X86/X86InstrSystem.td | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/lib/Target/X86/X86InstrSystem.td b/llvm/lib/Target/X86/X86InstrSystem.td index 053417ccde6..74683bc3dae 100644 --- a/llvm/lib/Target/X86/X86InstrSystem.td +++ b/llvm/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]>; |