diff options
author | Chad Rosier <mcrosier@apple.com> | 2012-10-18 17:51:43 +0000 |
---|---|---|
committer | Chad Rosier <mcrosier@apple.com> | 2012-10-18 17:51:43 +0000 |
commit | 0eea5167898e15f564f6985233ac15c43301415c (patch) | |
tree | 80e6e4c63e6e8da99b0246d340955bd31117a49b /clang/test | |
parent | a52fd9783f5af962e383f833d9e01e681b6696dc (diff) | |
download | bcm5719-llvm-0eea5167898e15f564f6985233ac15c43301415c.tar.gz bcm5719-llvm-0eea5167898e15f564f6985233ac15c43301415c.zip |
[ms-inline asm] Remove accidental commit.
llvm-svn: 166193
Diffstat (limited to 'clang/test')
-rw-r--r-- | clang/test/CodeGen/ms-inline-asm.c | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/clang/test/CodeGen/ms-inline-asm.c b/clang/test/CodeGen/ms-inline-asm.c index f16cd81edad..387a49cfd21 100644 --- a/clang/test/CodeGen/ms-inline-asm.c +++ b/clang/test/CodeGen/ms-inline-asm.c @@ -114,20 +114,3 @@ unsigned t12(void) { // CHECK: t12 // CHECK: call void asm sideeffect inteldialect "mov eax, $2\0A\09mov $0, eax\0A\09mov eax, $3\0A\09mov $1, eax", "=*m,=*m,*m,*m,~{eax},~{dirflag},~{fpsr},~{flags}"(i32* %{{.*}}, i32* %{{.*}}, i32* %{{.*}}, i32* %{{.*}}) nounwind } - -#if 0 -void t13() { - unsigned i = 1, j = 2; -// __asm mov eax, [ebx] -// __asm mov eax, [4*ecx] -// __asm mov eax, [4] -// __asm mov eax, [ebx + 4*ecx] -// __asm mov eax, [ebx + 4*ecx + 4] - __asm mov eax, [i] - __asm mov eax, [i + 4*ecx] - __asm mov eax, [i + 4*ecx + 4] - __asm mov eax, [4*i] - __asm mov eax, [ebx + 4*i] - __asm mov eax, [ebx + 4*i + 4] -} -#endif |