[MIParser] Set RegClassOrRegBank during instruction parsing
[llvm-complete.git] / test / CodeGen / PowerPC / fast-isel-const.ll
blobc0b9fe43926a7211dd47116e48543d05cb95f2d4
1 ; RUN: llc < %s -O0 -verify-machineinstrs -fast-isel-abort=1 -mtriple=powerpc64-unknown-linux-gnu -mcpu=pwr7 | FileCheck %s --check-prefix=ELF64
3 define zeroext i1 @testi1(i8 %in) nounwind {
4 entry:
5   %c = icmp eq i8 %in, 5
6   br i1 %c, label %true, label %false
8 ; ELF64-LABEL: @testi1
10 true:
11   br label %end
13 ; ELF64-NOT: li {{[0-9]+}}, -1
14 ; ELF64: li {{[0-9]+}}, 1
16 false:
17   br label %end
19 ; ELF64: li {{[0-9]+}}, 0
21 end:
22   %r = phi i1 [ 0, %false], [ 1, %true ]
23   ret i1 %r
25 ; ELF64: blr