2009-09-15 06:34:29 +00:00
|
|
|
; RUN: opt < %s -constprop -die -S | FileCheck %s
|
|
|
|
|
2002-05-03 20:12:31 +00:00
|
|
|
; This is a basic sanity check for constant propogation. The add instruction
|
|
|
|
; should be eliminated.
|
2009-09-15 06:34:29 +00:00
|
|
|
define i32 @test1(i1 %B) {
|
2008-03-01 09:15:35 +00:00
|
|
|
br i1 %B, label %BB1, label %BB2
|
|
|
|
|
2009-09-15 06:34:29 +00:00
|
|
|
BB1:
|
|
|
|
%Val = add i32 0, 0
|
2008-03-01 09:15:35 +00:00
|
|
|
br label %BB3
|
|
|
|
|
2009-09-15 06:34:29 +00:00
|
|
|
BB2:
|
2008-03-01 09:15:35 +00:00
|
|
|
br label %BB3
|
|
|
|
|
2009-09-15 06:34:29 +00:00
|
|
|
BB3:
|
|
|
|
; CHECK: @test1
|
|
|
|
; CHECK: %Ret = phi i32 [ 0, %BB1 ], [ 1, %BB2 ]
|
|
|
|
%Ret = phi i32 [ %Val, %BB1 ], [ 1, %BB2 ]
|
2008-03-01 09:15:35 +00:00
|
|
|
ret i32 %Ret
|
2003-06-28 23:23:34 +00:00
|
|
|
}
|
2008-03-01 09:15:35 +00:00
|
|
|
|