diff options
author | Chad Rosier <mcrosier@apple.com> | 2013-02-20 17:39:31 +0000 |
---|---|---|
committer | Chad Rosier <mcrosier@apple.com> | 2013-02-20 17:39:31 +0000 |
commit | 7ef6fd3402b3db82c178f1df68d05ef8977dc1c9 (patch) | |
tree | f0c6764c8de86e461ca664c783ba67d9e9cad6c2 /clang/test | |
parent | 25832ede03654c8e6cc2dfd6fa8244db3fe44051 (diff) | |
download | bcm5719-llvm-7ef6fd3402b3db82c178f1df68d05ef8977dc1c9.tar.gz bcm5719-llvm-7ef6fd3402b3db82c178f1df68d05ef8977dc1c9.zip |
[ms-inline asm] Remove this test while I investigate why eax isn't being clobbered.
llvm-svn: 175637
Diffstat (limited to 'clang/test')
-rw-r--r-- | clang/test/CodeGen/ms-inline-asm.c | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/clang/test/CodeGen/ms-inline-asm.c b/clang/test/CodeGen/ms-inline-asm.c index 1a441b64476..2283a50987d 100644 --- a/clang/test/CodeGen/ms-inline-asm.c +++ b/clang/test/CodeGen/ms-inline-asm.c @@ -348,9 +348,3 @@ int *t30() // CHECK: call void asm sideeffect inteldialect "lea edi, dword ptr $0", "*m,~{edi},~{dirflag},~{fpsr},~{flags}"([2 x i32]* @{{.*}}) nounwind // CHECK: call void asm sideeffect inteldialect "mov dword ptr $0, edi", "=*m,~{dirflag},~{fpsr},~{flags}"(i32** %{{.*}}) nounwind } - -void t31(int a) { - __asm mov eax, dword ptr [a] -// CHECK: t31 -// CHECK: call void asm sideeffect inteldialect "mov eax, dword ptr [$0]", "*m,~{dirflag},~{fpsr},~{flags}"(i32* %{{.*}}) nounwind -} |