Instruction scheduling itinerary for Intel Atom.
[oota-llvm.git] / test / CodeGen / X86 / v-binop-widen.ll
1 ; RUN: llc -mcpu=generic -march=x86 -mattr=+sse < %s | FileCheck %s
2 ; CHECK: divss
3 ; CHECK: divps
4 ; CHECK: divps
5
6 %vec = type <9 x float>
7 define %vec @vecdiv( %vec %p1, %vec %p2)
8 {
9   %result = fdiv %vec %p1, %p2
10   ret %vec %result
11 }
12