Add tests for casts from unsigned integers to floats

llvm-svn: 6147
This commit is contained in:
Chris Lattner 2003-05-12 20:35:29 +00:00
parent 6c906adb73
commit 5baf6530c2
1 changed files with 11 additions and 0 deletions

View File

@ -19,23 +19,34 @@ int %main() {
cast sbyte 4 to ulong cast sbyte 4 to ulong
cast sbyte 4 to double cast sbyte 4 to double
; cast ubyte to ...
cast ubyte 0 to float
cast ubyte 0 to double
; cast short to ... ; cast short to ...
cast short 0 to short cast short 0 to short
cast short 0 to long cast short 0 to long
cast short 0 to ulong cast short 0 to ulong
cast short 0 to double cast short 0 to double
; cast ushort to ...
;cast ushort 0 to float
;cast ushort 0 to double
; cast int to ... ; cast int to ...
cast int 6 to bool cast int 6 to bool
cast int 6 to short cast int 6 to short
cast int 0 to int cast int 0 to int
cast int 0 to long cast int 0 to long
cast int 0 to ulong cast int 0 to ulong
cast int 0 to float
cast int 0 to double cast int 0 to double
; cast uint to ... ; cast uint to ...
cast uint 0 to long cast uint 0 to long
cast uint 0 to ulong cast uint 0 to ulong
;cast uint 0 to float
;cast uint 0 to double
; cast long to ... ; cast long to ...
cast long 0 to sbyte cast long 0 to sbyte