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 | 2ec6cfcfa00832b015c7a2018884d95ef15f4477 (patch) | |
tree | 3342a551ea909744c1c551b529dbb60df7ab9410 | |
parent | e9a6226c7a2fd1c30a00990cdeb69b89f5599fb3 (diff) |
[ms-inline asm] Remove this test while I investigate why eax isn't being clobbered.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@175637 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | test/CodeGen/ms-inline-asm.c | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/test/CodeGen/ms-inline-asm.c b/test/CodeGen/ms-inline-asm.c index 1a441b6447..2283a50987 100644 --- a/test/CodeGen/ms-inline-asm.c +++ b/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 -} |