1 ; RUN: opt < %s -instcombine -S | FileCheck %s
3 target datalayout = "e-p:64:64:64-i1:8:8-i8:8:8-i16:16:16-i32:32:32-i64:64:64-f32:32:32-f64:64:64-v64:64:64-v128:128:128-a0:0:64-s0:64:64-f80:128:128"
4 target triple = "x86_64-apple-darwin10.0"
6 declare noalias i8* @malloc(i64) nounwind
7 declare void @free(i8*)
11 %A = call noalias i8* @malloc(i64 4) nounwind
12 %B = icmp eq i8* %A, null
15 call void @free(i8* %A)
18 ; CHECK-LABEL: @test1(
22 ; CHECK-LABEL: @test2(
23 define noalias i8* @test2() nounwind {
26 %A = call noalias i8* @malloc(i64 4) nounwind
28 %tobool = icmp eq i8* %A, null
30 br i1 %tobool, label %return, label %if.end
39 %retval.0 = phi i8* [ %A, %if.end ], [ null, %entry ]