mirror of
https://github.com/RPCSX/llvm.git
synced 2025-02-15 10:39:47 +00:00
![Dylan McKay](/assets/img/avatar_default.png)
There are about 3 underlying bugs causing the tests to fail. On top of that, some tests just we're 'generic' enough. i.e. 32-bit registers. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@294434 91177308-0d34-0410-b5e6-96231b3b80d8
16 lines
231 B
LLVM
16 lines
231 B
LLVM
; RUN: llc < %s
|
|
|
|
; Bug: PR31898
|
|
; XFAIL: avr
|
|
|
|
%f8 = type <8 x float>
|
|
|
|
define void @test_f8(%f8 *%P, %f8* %Q, %f8 *%S) {
|
|
%p = load %f8, %f8* %P
|
|
%q = load %f8, %f8* %Q
|
|
%R = fadd %f8 %p, %q
|
|
store %f8 %R, %f8 *%S
|
|
ret void
|
|
}
|
|
|