Change tests from "opt %s" to "opt < %s" so that opt doesn't see the
[oota-llvm.git] / test / Transforms / InstCombine / 2007-05-04-Crash.ll
1 ; RUN: opt < %s -instcombine -disable-output
2 ; PR1384
3
4 target datalayout = "e-p:32:32:32-i1:8:8-i8:8:8-i16:16:16-i32:32:32-i64:32:64-f32:32:32-f64:32:64-v64:64:64-v128:128:128-a0:0:64"
5 target triple = "i686-apple-darwin8"
6         %struct.CFRuntimeBase = type { i32, [4 x i8] }
7         %struct.CGColor = type opaque
8         %struct.CGColorSpace = type { %struct.CFRuntimeBase, i8, i8, i8, i32, i32, i32, %struct.CGColor*, float*, %struct.CGMD5Signature, %struct.CGMD5Signature*, [0 x %struct.CGColorSpaceDescriptor] }
9         %struct.CGColorSpaceCalibratedRGBData = type { [3 x float], [3 x float], [3 x float], [9 x float] }
10         %struct.CGColorSpaceDescriptor = type { %struct.CGColorSpaceCalibratedRGBData }
11         %struct.CGColorSpaceLabData = type { [3 x float], [3 x float], [4 x float] }
12         %struct.CGMD5Signature = type { [16 x i8], i8 }
13
14 declare fastcc %struct.CGColorSpace* @CGColorSpaceCreate(i32, i32)
15
16 declare void @llvm.memcpy.i32(i8*, i8*, i32, i32)
17
18 define %struct.CGColorSpace* @CGColorSpaceCreateLab(float* %whitePoint, float* %blackPoint, float* %range) {
19 entry:
20         %tmp17 = call fastcc %struct.CGColorSpace* @CGColorSpaceCreate( i32 5, i32 3 )          ; <%struct.CGColorSpace*> [#uses=2]
21         %tmp28 = getelementptr %struct.CGColorSpace* %tmp17, i32 0, i32 11              ; <[0 x %struct.CGColorSpaceDescriptor]*> [#uses=1]
22         %tmp29 = getelementptr [0 x %struct.CGColorSpaceDescriptor]* %tmp28, i32 0, i32 0               ; <%struct.CGColorSpaceDescriptor*> [#uses=1]
23         %tmp30 = getelementptr %struct.CGColorSpaceDescriptor* %tmp29, i32 0, i32 0             ; <%struct.CGColorSpaceCalibratedRGBData*> [#uses=1]
24         %tmp3031 = bitcast %struct.CGColorSpaceCalibratedRGBData* %tmp30 to %struct.CGColorSpaceLabData*                ; <%struct.CGColorSpaceLabData*> [#uses=1]
25         %tmp45 = getelementptr %struct.CGColorSpaceLabData* %tmp3031, i32 0, i32 2              ; <[4 x float]*> [#uses=1]
26         %tmp46 = getelementptr [4 x float]* %tmp45, i32 0, i32 0                ; <float*> [#uses=1]
27         %tmp4648 = bitcast float* %tmp46 to i8*         ; <i8*> [#uses=1]
28         call void @llvm.memcpy.i32( i8* %tmp4648, i8* null, i32 16, i32 4 )
29         ret %struct.CGColorSpace* %tmp17
30 }