diff options
author | Coby Tayree <coby.tayree@intel.com> | 2017-11-21 08:50:10 +0000 |
---|---|---|
committer | Coby Tayree <coby.tayree@intel.com> | 2017-11-21 08:50:10 +0000 |
commit | afdaa6704f49afec648551bf8b6906267bed99e0 (patch) | |
tree | f54087ad0b411d3c4fc5823019abda17e1957358 /clang/test | |
parent | 0c7b3643f715b1c2920331b43aca94997b58681d (diff) | |
download | bcm5719-llvm-afdaa6704f49afec648551bf8b6906267bed99e0.tar.gz bcm5719-llvm-afdaa6704f49afec648551bf8b6906267bed99e0.zip |
[x86][inline-asm] allow recognition of MPX regs inside ms inline-asm blob
Differential Revision: https://reviews.llvm.org/D38445
llvm-svn: 318739
Diffstat (limited to 'clang/test')
-rw-r--r-- | clang/test/CodeGen/ms-inline-asm.c | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/clang/test/CodeGen/ms-inline-asm.c b/clang/test/CodeGen/ms-inline-asm.c index c03f0deb056..cc8453b8681 100644 --- a/clang/test/CodeGen/ms-inline-asm.c +++ b/clang/test/CodeGen/ms-inline-asm.c @@ -661,6 +661,17 @@ void t46() { // CHECK: call void asm sideeffect inteldialect "add eax, [eax + $$-128]", "~{eax},~{flags},~{dirflag},~{fpsr},~{flags}"() } +void t47() { + // CHECK-LABEL: define void @t47 + __asm { + bndmk bnd0, dword ptr [eax] + bndmk bnd1, dword ptr [ebx] + bndmk bnd2, dword ptr [ecx] + bndmk bnd3, dword ptr [edx] + } + // CHECK: call void asm sideeffect inteldialect "bndmk bnd0, dword ptr [eax]\0A\09bndmk bnd1, dword ptr [ebx]\0A\09bndmk bnd2, dword ptr [ecx]\0A\09bndmk bnd3, dword ptr [edx]", "~{bnd0},~{bnd1},~{bnd2},~{bnd3},~{dirflag},~{fpsr},~{flags}"() +} + void dot_operator(){ // CHECK-LABEL: define void @dot_operator __asm { mov eax, 3[ebx]A.b} |