mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-24 19:52:54 +01:00
02a6b7e02e
The test should also likely have some FileCheck bits to validate the output(?). llvm-svn: 106146
9 lines
147 B
LLVM
9 lines
147 B
LLVM
; 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
|
|
}
|