2007-01-26 08:25:06 +00:00
|
|
|
; RUN: llvm-as < %s | llvm-dis > %t1.ll
|
2006-12-02 04:23:10 +00:00
|
|
|
; RUN: llvm-as %t1.ll -o - | llvm-dis > %t2.ll
|
|
|
|
; RUN: diff %t1.ll %t2.ll
|
|
|
|
|
2007-01-26 08:25:06 +00:00
|
|
|
define void @"NewCasts" (i16 %x) {
|
|
|
|
%a = zext i16 %x to i32
|
|
|
|
%b = sext i16 %x to i32
|
|
|
|
%c = trunc i16 %x to i8
|
|
|
|
%d = uitofp i16 %x to float
|
|
|
|
%e = sitofp i16 %x to double
|
|
|
|
%f = fptoui float %d to i16
|
|
|
|
%g = fptosi double %e to i16
|
2006-12-02 04:23:10 +00:00
|
|
|
%i = fpext float %d to double
|
|
|
|
%j = fptrunc double %i to float
|
2007-01-26 08:25:06 +00:00
|
|
|
%k = bitcast i32 %a to float
|
|
|
|
%l = inttoptr i16 %x to i32*
|
|
|
|
%m = ptrtoint i32* %l to i64
|
2007-11-17 03:58:34 +00:00
|
|
|
%n = insertelement <4 x i32> undef, i32 %a, i32 0
|
|
|
|
%o = sitofp <4 x i32> %n to <4 x float>
|
|
|
|
%p = uitofp <4 x i32> %n to <4 x float>
|
|
|
|
%q = fptosi <4 x float> %p to <4 x i32>
|
|
|
|
%r = fptoui <4 x float> %p to <4 x i32>
|
2006-12-02 04:23:10 +00:00
|
|
|
ret void
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-01-26 08:25:06 +00:00
|
|
|
define i16 @"ZExtConst" () {
|
|
|
|
ret i16 trunc ( i32 zext ( i16 42 to i32) to i16 )
|
2006-12-18 01:11:46 +00:00
|
|
|
}
|
|
|
|
|
2007-01-26 08:25:06 +00:00
|
|
|
define i16 @"SExtConst" () {
|
|
|
|
ret i16 trunc (i32 sext (i16 42 to i32) to i16 )
|
2006-12-18 01:11:46 +00:00
|
|
|
}
|