1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-19 19:12:56 +02:00

Add three new testcases

llvm-svn: 26844
This commit is contained in:
Chris Lattner 2006-03-19 00:20:03 +00:00
parent 367f9aef95
commit 234217d62f

View File

@ -8,6 +8,8 @@
implementation
;;; TEST HANDLING OF VARIOUS VECTOR SIZES
void %test_f1(%f1 *%P, %f1* %Q, %f1 *%S) {
%p = load %f1 *%P
%q = load %f1* %Q
@ -39,3 +41,26 @@ void %test_f8(%f8 *%P, %f8* %Q, %f8 *%S) {
store %f8 %R, %f8 *%S
ret void
}
;;; TEST VECTOR CONSTRUCTS
void %test_cst(%f4 *%P, %f4 *%S) {
%p = load %f4* %P
%R = add %f4 %p, <float 0.1, float 1.0, float 2.0, float 4.5>
store %f4 %R, %f4 *%S
ret void
}
void %test_zero(%f4 *%P, %f4 *%S) {
%p = load %f4* %P
%R = add %f4 %p, zeroinitializer
store %f4 %R, %f4 *%S
ret void
}
void %test_undef(%f4 *%P, %f4 *%S) {
%p = load %f4* %P
%R = add %f4 %p, undef
store %f4 %R, %f4 *%S
ret void
}