Forbid arrays of function-type and structures with function-typed fields.
[llvm/avr.git] / test / Transforms / ConstProp / logicaltest.ll
blob7a90a7199f8da4a93724c4ed9b500a7ba13b9f65
1 ; Ensure constant propogation of logical instructions is working correctly.
3 ; RUN: opt < %s -constprop -die -S | \
4 ; RUN:   not egrep {and|or|xor}
6 define i32 @test1() {
7         %R = and i32 4, 1234            ; <i32> [#uses=1]
8         ret i32 %R
11 define i1 @test1.upgrd.1() {
12         %R = and i1 true, false         ; <i1> [#uses=1]
13         ret i1 %R
16 define i32 @test2() {
17         %R = or i32 4, 1234             ; <i32> [#uses=1]
18         ret i32 %R
21 define i1 @test2.upgrd.2() {
22         %R = or i1 true, false          ; <i1> [#uses=1]
23         ret i1 %R
26 define i32 @test3() {
27         %R = xor i32 4, 1234            ; <i32> [#uses=1]
28         ret i32 %R
31 define i1 @test3.upgrd.3() {
32         %R = xor i1 true, false         ; <i1> [#uses=1]
33         ret i1 %R