Indentation change.
[llvm/avr.git] / test / Transforms / InstCombine / 2007-01-13-ExtCompareMiscompile.ll
blobedbcfeed923a97078a5302349eeabc52bfe9884f
1 ; RUN: llvm-as < %s | opt -instcombine | llvm-dis | grep {icmp ugt}
2 ; PR1107
3 ; PR1940
5 define i1 @test(i8 %A, i8 %B) {
6         %a = zext i8 %A to i32
7         %b = zext i8 %B to i32
8         %c = icmp sgt i32 %a, %b
9         ret i1 %c