diff options
| author | Chris Lattner <sabre@nondot.org> | 2002-11-02 20:54:11 +0000 | 
|---|---|---|
| committer | Chris Lattner <sabre@nondot.org> | 2002-11-02 20:54:11 +0000 | 
| commit | b322f1666a4d9efc0e5aeaba537fa3cca034c83f (patch) | |
| tree | 194de59c79e95593e0c79e8f2da6af5b39445d9e | |
| parent | d12e1bc777aaf0cfc5e0b1be2ef23f7acb2dca3b (diff) | |
| download | bcm5719-llvm-b322f1666a4d9efc0e5aeaba537fa3cca034c83f.tar.gz bcm5719-llvm-b322f1666a4d9efc0e5aeaba537fa3cca034c83f.zip | |
Enable div and mod tests
llvm-svn: 4507
| -rw-r--r-- | llvm/test/Regression/Jello/test-arith.ll | 24 | 
1 files changed, 12 insertions, 12 deletions
| diff --git a/llvm/test/Regression/Jello/test-arith.ll b/llvm/test/Regression/Jello/test-arith.ll index c0dd840ced3..ffe85a8525a 100644 --- a/llvm/test/Regression/Jello/test-arith.ll +++ b/llvm/test/Regression/Jello/test-arith.ll @@ -3,26 +3,26 @@ void %test() {  	%A = add sbyte 0, 12  	%B = sub sbyte %A, %A  	%C = mul sbyte %B, %B -	;%D = div sbyte %C, %C -	;%E = rem sbyte %D, %D -	;%F = div ubyte 5, 6 -	;%G = rem ubyte 6, 5 +	%D = div sbyte %C, %C +	%E = rem sbyte %D, %D +	%F = div ubyte 5, 6 +	%G = rem ubyte 6, 5  	%A = add short 0, 12  	%B = sub short %A, %A  	%C = mul short %B, %B -	;%D = div short %C, %C -	;%E = rem short %D, %D -	;%F = div ushort 5, 6 -	;%G = rem uint 6, 5 +	%D = div short %C, %C +	%E = rem short %D, %D +	%F = div ushort 5, 6 +	%G = rem uint 6, 5  	%A = add int 0, 12  	%B = sub int %A, %A  	%C = mul int %B, %B -	;%D = div int %C, %C -	;%E = rem int %D, %D -	;%F = div uint 5, 6 -	;%G = rem uint 6, 5 +	%D = div int %C, %C +	%E = rem int %D, %D +	%F = div uint 5, 6 +	%G = rem uint 6, 5  	ret void  } | 

