summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChad Rosier <mcrosier@apple.com>2012-10-29 18:18:26 +0000
committerChad Rosier <mcrosier@apple.com>2012-10-29 18:18:26 +0000
commit466c1c68703d3231255fb0d0de39cf3f1268b9a7 (patch)
tree4b6175175510c3adbf44d89fc050614b180bd26c
parente1d62f9c0a2815611952f5edf46ba25a0f621a8b (diff)
downloadbcm5719-llvm-466c1c68703d3231255fb0d0de39cf3f1268b9a7.tar.gz
bcm5719-llvm-466c1c68703d3231255fb0d0de39cf3f1268b9a7.zip
Remove redundant test case from r166949, per Eli's suggestion.
llvm-svn: 166953
-rw-r--r--llvm/test/CodeGen/X86/ms-inline-asm.ll107
1 files changed, 0 insertions, 107 deletions
diff --git a/llvm/test/CodeGen/X86/ms-inline-asm.ll b/llvm/test/CodeGen/X86/ms-inline-asm.ll
index 403da3f34ea..24d28adda89 100644
--- a/llvm/test/CodeGen/X86/ms-inline-asm.ll
+++ b/llvm/test/CodeGen/X86/ms-inline-asm.ll
@@ -61,110 +61,3 @@ entry:
; CHECK: .att_syntax
; CHECK: {{## InlineAsm End|#NO_APP}}
}
-
-define void @t21() nounwind {
-; CHECK: t21
-entry:
- br label %foo
-
-foo: ; preds = %entry
- call void asm sideeffect inteldialect "mov eax, [4*eax + 4]", "~{eax},~{dirflag},~{fpsr},~{flags}"() nounwind
-; CHECK: {{## InlineAsm Start|#APP}}
-; CHECK: .intel_syntax
-; CHECK: mov eax, [4*eax + 4]
-; CHECK: .att_syntax
-; CHECK: {{## InlineAsm End|#NO_APP}}
-
- call void asm sideeffect inteldialect "mov eax, [4*eax][4]", "~{eax},~{dirflag},~{fpsr},~{flags}"() nounwind
-; CHECK: {{## InlineAsm Start|#APP}}
-; CHECK: .intel_syntax
-; CHECK: mov eax, [4*eax][4]
-; CHECK: .att_syntax
-; CHECK: {{## InlineAsm End|#NO_APP}}
-
- call void asm sideeffect inteldialect "mov eax, [esi + eax]", "~{eax},~{dirflag},~{fpsr},~{flags}"() nounwind
-; CHECK: {{## InlineAsm Start|#APP}}
-; CHECK: .intel_syntax
-; CHECK: mov eax, [esi + eax]
-; CHECK: .att_syntax
-; CHECK: {{## InlineAsm End|#NO_APP}}
-
- call void asm sideeffect inteldialect "mov eax, [esi][eax]", "~{eax},~{dirflag},~{fpsr},~{flags}"() nounwind
-; CHECK: {{## InlineAsm Start|#APP}}
-; CHECK: .intel_syntax
-; CHECK: mov eax, [esi][eax]
-; CHECK: .att_syntax
-; CHECK: {{## InlineAsm End|#NO_APP}}
-
- call void asm sideeffect inteldialect "mov eax, [esi + 4*eax]", "~{eax},~{dirflag},~{fpsr},~{flags}"() nounwind
-; CHECK: {{## InlineAsm Start|#APP}}
-; CHECK: .intel_syntax
-; CHECK: mov eax, [esi + 4*eax]
-; CHECK: .att_syntax
-; CHECK: {{## InlineAsm End|#NO_APP}}
-
- call void asm sideeffect inteldialect "mov eax, [esi][4*eax]", "~{eax},~{dirflag},~{fpsr},~{flags}"() nounwind
-; CHECK: {{## InlineAsm Start|#APP}}
-; CHECK: .intel_syntax
-; CHECK: mov eax, [esi][4*eax]
-; CHECK: .att_syntax
-; CHECK: {{## InlineAsm End|#NO_APP}}
-
- call void asm sideeffect inteldialect "mov eax, [esi + eax + 4]", "~{eax},~{dirflag},~{fpsr},~{flags}"() nounwind
-; CHECK: {{## InlineAsm Start|#APP}}
-; CHECK: .intel_syntax
-; CHECK: mov eax, [esi + eax + 4]
-; CHECK: .att_syntax
-; CHECK: {{## InlineAsm End|#NO_APP}}
-
- call void asm sideeffect inteldialect "mov eax, [esi][eax + 4]", "~{eax},~{dirflag},~{fpsr},~{flags}"() nounwind
-; CHECK: {{## InlineAsm Start|#APP}}
-; CHECK: .intel_syntax
-; CHECK: mov eax, [esi][eax + 4]
-; CHECK: .att_syntax
-; CHECK: {{## InlineAsm End|#NO_APP}}
-
- call void asm sideeffect inteldialect "mov eax, [esi + eax][4]", "~{eax},~{dirflag},~{fpsr},~{flags}"() nounwind
-; CHECK: {{## InlineAsm Start|#APP}}
-; CHECK: .intel_syntax
-; CHECK: mov eax, [esi + eax][4]
-; CHECK: .att_syntax
-; CHECK: {{## InlineAsm End|#NO_APP}}
-
- call void asm sideeffect inteldialect "mov eax, [esi][eax][4]", "~{eax},~{dirflag},~{fpsr},~{flags}"() nounwind
-; CHECK: {{## InlineAsm Start|#APP}}
-; CHECK: .intel_syntax
-; CHECK: mov eax, [esi][eax][4]
-; CHECK: .att_syntax
-; CHECK: {{## InlineAsm End|#NO_APP}}
-
- call void asm sideeffect inteldialect "mov eax, [esi + 2*eax + 4]", "~{eax},~{dirflag},~{fpsr},~{flags}"() nounwind
-; CHECK: {{## InlineAsm Start|#APP}}
-; CHECK: .intel_syntax
-; CHECK: mov eax, [esi + 2*eax + 4]
-; CHECK: .att_syntax
-; CHECK: {{## InlineAsm End|#NO_APP}}
-
- call void asm sideeffect inteldialect "mov eax, [esi][2*eax + 4]", "~{eax},~{dirflag},~{fpsr},~{flags}"() nounwind
-; CHECK: {{## InlineAsm Start|#APP}}
-; CHECK: .intel_syntax
-; CHECK: mov eax, [esi][2*eax + 4]
-; CHECK: .att_syntax
-; CHECK: {{## InlineAsm End|#NO_APP}}
-
- call void asm sideeffect inteldialect "mov eax, [esi + 2*eax][4]", "~{eax},~{dirflag},~{fpsr},~{flags}"() nounwind
-; CHECK: {{## InlineAsm Start|#APP}}
-; CHECK: .intel_syntax
-; CHECK: mov eax, [esi + 2*eax][4]
-; CHECK: .att_syntax
-; CHECK: {{## InlineAsm End|#NO_APP}}
-
- call void asm sideeffect inteldialect "mov eax, [esi][2*eax][4]", "~{eax},~{dirflag},~{fpsr},~{flags}"() nounwind
-; CHECK: {{## InlineAsm Start|#APP}}
-; CHECK: .intel_syntax
-; CHECK: mov eax, [esi][2*eax][4]
-; CHECK: .att_syntax
-; CHECK: {{## InlineAsm End|#NO_APP}}
-
- ret void
-}
OpenPOWER on IntegriCloud