diff options
Diffstat (limited to 'test/CodeGen/Generic/v-binop-widen.ll')
-rw-r--r-- | test/CodeGen/Generic/v-binop-widen.ll | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/test/CodeGen/Generic/v-binop-widen.ll b/test/CodeGen/Generic/v-binop-widen.ll new file mode 100644 index 0000000..89aa336 --- /dev/null +++ b/test/CodeGen/Generic/v-binop-widen.ll @@ -0,0 +1,8 @@ +; RUN: llc -march=x86 %s + +%vec = type <9 x float> +define %vec @vecdiv( %vec %p1, %vec %p2) +{ + %result = fdiv %vec %p1, %p2 + ret %vec %result +} |