diff options
author | Chad Rosier <mcrosier@apple.com> | 2013-04-11 21:49:48 +0000 |
---|---|---|
committer | Chad Rosier <mcrosier@apple.com> | 2013-04-11 21:49:48 +0000 |
commit | 76154684e95fa61663c199f43868ff28e8e2db9b (patch) | |
tree | 6f533ed33e731e0474e168bbfcb168d05c968b75 /clang | |
parent | 8fb83300692540d548fb05e716700392b1d819cd (diff) | |
download | bcm5719-llvm-76154684e95fa61663c199f43868ff28e8e2db9b.tar.gz bcm5719-llvm-76154684e95fa61663c199f43868ff28e8e2db9b.zip |
Update test case for r179323.
llvm-svn: 179324
Diffstat (limited to 'clang')
-rw-r--r-- | clang/test/CodeGen/ms-inline-asm.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/clang/test/CodeGen/ms-inline-asm.cpp b/clang/test/CodeGen/ms-inline-asm.cpp index 9c160be02fd..5d3a853a281 100644 --- a/clang/test/CodeGen/ms-inline-asm.cpp +++ b/clang/test/CodeGen/ms-inline-asm.cpp @@ -20,7 +20,7 @@ void t1() { // CHECK: @_Z2t1v // CHECK: call void asm sideeffect inteldialect "mov eax, Foo::ptr", "~{eax},~{dirflag},~{fpsr},~{flags}"() // CHECK: call void asm sideeffect inteldialect "mov eax, Foo::Bar::ptr", "~{eax},~{dirflag},~{fpsr},~{flags}"() -// CHECK: call void asm sideeffect inteldialect "mov eax, [Foo::ptr]", "~{eax},~{dirflag},~{fpsr},~{flags}"() -// CHECK: call void asm sideeffect inteldialect "mov eax, dword ptr [Foo::ptr]", "~{eax},~{dirflag},~{fpsr},~{flags}"() -// CHECK: call void asm sideeffect inteldialect "mov eax, dword ptr [Foo::ptr]", "~{eax},~{dirflag},~{fpsr},~{flags}"() +// CHECK: call void asm sideeffect inteldialect "mov eax, Foo::ptr", "~{eax},~{dirflag},~{fpsr},~{flags}"() +// CHECK: call void asm sideeffect inteldialect "mov eax, dword ptr Foo::ptr", "~{eax},~{dirflag},~{fpsr},~{flags}"() +// CHECK: call void asm sideeffect inteldialect "mov eax, dword ptr Foo::ptr", "~{eax},~{dirflag},~{fpsr},~{flags}"() } |