aboutsummaryrefslogtreecommitdiffstats
path: root/test/CodeGen/X86/v-binop-widen.ll
diff options
context:
space:
mode:
Diffstat (limited to 'test/CodeGen/X86/v-binop-widen.ll')
-rw-r--r--test/CodeGen/X86/v-binop-widen.ll11
1 files changed, 0 insertions, 11 deletions
diff --git a/test/CodeGen/X86/v-binop-widen.ll b/test/CodeGen/X86/v-binop-widen.ll
deleted file mode 100644
index fca4da6..0000000
--- a/test/CodeGen/X86/v-binop-widen.ll
+++ /dev/null
@@ -1,11 +0,0 @@
-; RUN: llc -mcpu=generic -march=x86 -mattr=+sse < %s | FileCheck %s
-; CHECK: divps
-; CHECK: divps
-; CHECK: divss
-
-%vec = type <9 x float>
-define %vec @vecdiv( %vec %p1, %vec %p2)
-{
- %result = fdiv %vec %p1, %p2
- ret %vec %result
-}