mirror of
https://github.com/RPCS3/llvm.git
synced 2024-11-26 13:10:42 +00:00
For PR1336:
XFAIL tests covered by the PR. These will be un-XFAILed as they are fixed. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@36093 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
42e86fb1e6
commit
4575ab2186
@ -5,4 +5,5 @@
|
||||
;RUN: llvm-ranlib %t.GNU.a
|
||||
;RUN: llvm-ar t %t.GNU.a > %t1
|
||||
;RUN: diff %t1 %p/GNU.toc
|
||||
;XFAIL: *
|
||||
|
||||
|
@ -5,3 +5,4 @@
|
||||
;RUN: llvm-ranlib %t.MacOSX.a
|
||||
;RUN: llvm-ar t %t.MacOSX.a > %t1
|
||||
;RUN: diff %t1 %p/MacOSX.toc
|
||||
;XFAIL: *
|
||||
|
@ -5,4 +5,4 @@
|
||||
;RUN: llvm-ranlib %t.SVR4.a
|
||||
;RUN: llvm-ar t %t.SVR4.a > %t1
|
||||
;RUN: diff %t1 %p/SVR4.toc
|
||||
|
||||
;XFAIL: *
|
||||
|
@ -5,4 +5,5 @@
|
||||
;RUN: llvm-ranlib %t.xpg4.a
|
||||
;RUN: llvm-ar t %t.xpg4.a > %t1
|
||||
;RUN: diff %t1 %p/xpg4.toc
|
||||
;XFAIL: *
|
||||
|
||||
|
@ -2,6 +2,7 @@
|
||||
; "crafty" spec benchmark.
|
||||
;
|
||||
; RUN: llvm-upgrade < %s | llvm-as | opt -instcombine | llvm-dis | llvm-as
|
||||
;XFAIL: *
|
||||
|
||||
%CHESS_POSITION = type { uint, int }
|
||||
|
||||
|
@ -1,4 +1,5 @@
|
||||
; RUN: llvm-upgrade < %s | llvm-as | llvm-dis | not grep getelementptr
|
||||
; XFAIL: *
|
||||
|
||||
%A = external global { float } ; <{ float }*> [#uses=1]
|
||||
global int* cast (float* getelementptr ({ float }* %A, long 0, ubyte 0) to int*)
|
||||
|
@ -1,5 +1,6 @@
|
||||
; RUN: llvm-upgrade < %s | llvm-as | llvm-dis | \
|
||||
; RUN: not grep {getelementptr.*getelementptr}
|
||||
; XFAIL: *
|
||||
|
||||
%struct.TUVVertex = type { short, short, short, short }
|
||||
%struct.TTriangleItem = type { sbyte*, sbyte*, [3 x %struct.TUVVertex] }
|
||||
|
@ -1,4 +1,5 @@
|
||||
// RUN: %llvmgxx -S %s -o - | llvm-as -f -o /dev/null
|
||||
// XFAIL: *
|
||||
|
||||
struct Pass {} ;
|
||||
template<typename PassName>
|
||||
|
@ -12,6 +12,7 @@
|
||||
// RUN: grep xstatnoWeak | grep internal | wc -l | grep 1
|
||||
// RUN: %llvmgxx %s -S -emit-llvm -O0 -o - | grep define | \
|
||||
// RUN: grep xextnoWeak | grep linkonce | wc -l | grep 1
|
||||
// XFAIL: *
|
||||
inline int xglobWeak(int) __attribute__((weak));
|
||||
inline int xglobWeak (int i) {
|
||||
return i*2;
|
||||
|
@ -1,4 +1,5 @@
|
||||
// RUN: %llvmgcc -S %s -o - | llvm-as -f -o /dev/null
|
||||
// XFAIL: *
|
||||
|
||||
/* Provide Declarations */
|
||||
|
||||
|
@ -1,4 +1,5 @@
|
||||
/* RUN: %llvmgcc -xc %s -c -o - | llvm-dis | not grep cast
|
||||
XFAIL: *
|
||||
*/
|
||||
|
||||
void test(int* array, long long N) {
|
||||
|
@ -1,4 +1,5 @@
|
||||
// RUN: %llvmgcc -S %s -o - | grep {llvm.ctlz.i32(i32} | wc -l | grep 2
|
||||
// XFAIL: *
|
||||
|
||||
unsigned t2(unsigned X) {
|
||||
return __builtin_clz(X);
|
||||
|
@ -6,6 +6,7 @@
|
||||
; RUN: grep align.*3 | wc | grep 2
|
||||
; RUN: llvm-upgrade < %s | llvm-as | llc -mtriple=arm-apple-darwin | \
|
||||
; RUN: grep align.*2 | wc | grep 4
|
||||
; XFAIL: *
|
||||
|
||||
%a = global bool true
|
||||
%b = global sbyte 1
|
||||
|
@ -2,6 +2,7 @@
|
||||
; RUN: llvm-as < %s | llc -mtriple=arm-linux | grep mov | wc -l | grep 1 &&
|
||||
; RUN: llvm-as < %s | llc -mtriple=arm-linux --disable-fp-elim | grep mov | wc -l | grep 2
|
||||
; RUN: llvm-as < %s | llc -mtriple=arm-apple-darwin | grep mov | wc -l | grep 2
|
||||
; XFAIL: *
|
||||
|
||||
@str = internal constant [12 x i8] c"Hello World\00"
|
||||
|
||||
|
@ -1,5 +1,6 @@
|
||||
; RUN: llvm-upgrade < %s | llvm-as | llc -march=alpha | not grep cmovlt
|
||||
; RUN: llvm-upgrade < %s | llvm-as | llc -march=alpha | grep cmoveq
|
||||
; XFAIL: *
|
||||
|
||||
long %cmov_lt(long %a, long %c) {
|
||||
entry:
|
||||
|
@ -4,6 +4,7 @@
|
||||
; RUN: llvm-as < %s | llc -march=alpha -mcpu=ev6 | not grep -i ctlz
|
||||
; RUN: llvm-as < %s | llc -march=alpha -mcpu=ev56 | not grep -i ctlz
|
||||
; RUN: llvm-as < %s | llc -march=alpha -mattr=-CIX | not grep -i ctlz
|
||||
; XFAIL: *
|
||||
|
||||
declare i32 @llvm.ctlz.i8(i8)
|
||||
|
||||
|
@ -1,5 +1,6 @@
|
||||
; Make sure this testcase does not use ctpop
|
||||
; RUN: llvm-upgrade < %s | llvm-as | llc -march=alpha | not grep -i ctpop
|
||||
; XFAIL: *
|
||||
|
||||
declare ulong %llvm.ctlz(ulong)
|
||||
|
||||
|
@ -8,6 +8,7 @@
|
||||
; RUN: not grep -i ctpop
|
||||
; RUN: llvm-upgrade < %s | llvm-as | llc -march=alpha -mattr=-CIX | \
|
||||
; RUN: not grep -i 'ctpop'
|
||||
; XFAIL: *
|
||||
|
||||
declare long %llvm.ctpop(long)
|
||||
|
||||
|
@ -5,6 +5,7 @@
|
||||
; everything up. :( Test that this does not happen anymore.
|
||||
;
|
||||
; RUN: llvm-upgrade < %s | llvm-as | llc -march=c | not grep _memcpy
|
||||
; XFAIL: *
|
||||
|
||||
declare void %llvm.memcpy(sbyte*, sbyte*, uint,uint)
|
||||
declare float* %memcpy(int*, uint,int)
|
||||
|
@ -1,4 +1,6 @@
|
||||
; RUN: llvm-upgrade < %s | llvm-as | llc -march=c | not grep -- -65535
|
||||
; XFAIL: *
|
||||
|
||||
; ModuleID = '<stdin>'
|
||||
target endian = little
|
||||
target pointersize = 32
|
||||
|
@ -1,4 +1,5 @@
|
||||
; RUN: llvm-upgrade < %s | llvm-as | llc
|
||||
; XFAIL: *
|
||||
|
||||
void ""(float* %inregs, float* %outregs) {
|
||||
%a_addr.i = alloca <4 x float> ; <<4 x float>*> [#uses=1]
|
||||
|
@ -1,4 +1,5 @@
|
||||
; RUN: llvm-upgrade < %s | llvm-as | llc -march=x86 | grep ESP | not grep sub
|
||||
; XFAIL: *
|
||||
|
||||
int %test(int %X) {
|
||||
ret int %X
|
||||
|
@ -1,7 +1,7 @@
|
||||
; RUN: llvm-as < %s | llc -mtriple=i686-apple-darwin8 -mcpu=yonah -march=x86 > %t &&
|
||||
; RUN: grep fldl %t | wc -l | grep 1 &&
|
||||
; RUN: llvm-as < %s | llc -mtriple=i686-apple-darwin8 -mcpu=yonah -march=x86 > %t
|
||||
; RUN: grep fldl %t | wc -l | grep 1
|
||||
; RUN: not grep xmm %t &&
|
||||
; RUN: grep 'sub.*esp' %t | wc -l | grep 1
|
||||
; RUN: grep {sub.*esp} %t | wc -l | grep 1
|
||||
|
||||
; These testcases shouldn't require loading into an XMM register then storing
|
||||
; to memory, then reloading into an FPStack reg.
|
||||
|
@ -1,5 +1,6 @@
|
||||
; RUN: llvm-upgrade < %s | llvm-as | llc -march=x86 -x86-asm-syntax=intel | \
|
||||
; RUN: grep ST | not grep {fadd\\|fsub\\|fdiv\\|fmul}
|
||||
; XFAIL: *
|
||||
|
||||
; Test that the load of the constant is folded into the operation.
|
||||
|
||||
|
@ -1,5 +1,6 @@
|
||||
; RUN: llvm-upgrade < %s | llvm-as | llc -march=x86 -x86-asm-syntax=intel | \
|
||||
; RUN: grep ST | not grep {fadd\\|fsub\\|fdiv\\|fmul}
|
||||
; XFAIL: *
|
||||
|
||||
; Test that the load of the memory location is folded into the operation.
|
||||
|
||||
|
@ -1,4 +1,5 @@
|
||||
; RUN: llvm-as < %s | llc -march=x86 -mattr=+sse2 | not grep test
|
||||
; XFAIL: *
|
||||
|
||||
define float @test1(float %a, float %b) {
|
||||
%tmp = tail call float @copysignf( float %b, float %a )
|
||||
|
@ -1,6 +1,8 @@
|
||||
; RUN: llvm-upgrade < %s | llvm-as | llc -march=x86 -mcpu=yonah -enable-x86-sse &&
|
||||
; RUN: llvm-upgrade < %s | llvm-as | llc -march=x86 -mcpu=yonah -enable-x86-sse | not grep movss
|
||||
; RUN: llvm-upgrade < %s | llvm-as | llc -march=x86 -mcpu=yonah -enable-x86-sse | not grep xmm
|
||||
; RUN: llvm-upgrade < %s | llvm-as | \
|
||||
; RUN: llc -march=x86 -mcpu=yonah -enable-x86-sse | not grep movss
|
||||
; RUN: llvm-upgrade < %s | llvm-as | \
|
||||
; RUN: llc -march=x86 -mcpu=yonah -enable-x86-sse | not grep xmm
|
||||
; XFAIL: *
|
||||
|
||||
double %test1(double *%P) {
|
||||
%X = load double* %P
|
||||
|
@ -2,6 +2,7 @@
|
||||
; RUN: grep {subl.*60}
|
||||
; RUN: llvm-upgrade < %s | llvm-as | llc -march=x86 -mattr=+sse2 | \
|
||||
; RUN: grep {movdqa.*32}
|
||||
; XFAIL: *
|
||||
|
||||
void %test() {
|
||||
tail call void %xx( int 1, int 2, int 3, int 4, int 5, int 6, int 7, <2 x long> cast (<4 x int> < int 4, int 3, int 2, int 1 > to <2 x long>), <2 x long> cast (<4 x int> < int 8, int 7, int 6, int 5 > to <2 x long>), <2 x long> cast (<4 x int> < int 6, int 4, int 2, int 0 > to <2 x long>), <2 x long> cast (<4 x int> < int 8, int 4, int 2, int 1 > to <2 x long>), <2 x long> cast (<4 x int> < int 0, int 1, int 3, int 9 > to <2 x long>) )
|
||||
|
@ -2,6 +2,7 @@
|
||||
; a global that is dead. Make sure any globals they refer to die as well.
|
||||
|
||||
; RUN: llvm-upgrade < %s | llvm-as | opt -globaldce | llvm-dis | not grep foo
|
||||
; XFAIL: *
|
||||
|
||||
%b = internal global int ()* %foo ;; Unused, kills %foo
|
||||
|
||||
|
@ -2,6 +2,7 @@
|
||||
|
||||
; RUN: llvm-upgrade < %s | llvm-as | opt -globalopt | llvm-dis | \
|
||||
; RUN: not grep internal
|
||||
; XFAIL: *
|
||||
|
||||
%G0 = internal global [58 x sbyte] c"asdlfkajsdlfkajsd;lfkajds;lfkjasd;flkajsd;lkfja;sdlkfjasd\00"
|
||||
|
||||
|
@ -4,6 +4,7 @@
|
||||
;
|
||||
; RUN: llvm-upgrade < %s | llvm-as | opt -indvars -adce -simplifycfg | \
|
||||
; RUN: llvm-dis | not grep br
|
||||
; XFAIL: *
|
||||
|
||||
int %polynomial_constant() {
|
||||
br label %Loop
|
||||
|
Loading…
Reference in New Issue
Block a user