Revert " [LoongArch][ISel] Check the number of sign bits in `PatGprGpr_32` (#107432)"
[llvm-project.git] / llvm / test / CodeGen / PowerPC / 2006-10-17-brcc-miscompile.ll
blob7e9a9f4ca143cb2168572cd3a3ee33ed9d48f178
1 ; RUN: llc -verify-machineinstrs < %s
3 target datalayout = "E-p:32:32"
4 target triple = "powerpc-unknown-linux-gnu"
6 define void @foo(i32 %X) {
7 entry:
8         %tmp1 = and i32 %X, 3           ; <i32> [#uses=1]
9 ; CHECK:  xori 3, 3, 1
10         %tmp2 = xor i32 %tmp1, 1                ; <i32> [#uses=1]
11         %tmp = icmp eq i32 %tmp2, 0             ; <i1> [#uses=1]
12         br i1 %tmp, label %UnifiedReturnBlock, label %cond_true
13 cond_true:              ; preds = %entry
14         tail call i32 (...) @bar( )            ; <i32>:0 [#uses=0]
15         ret void
16 UnifiedReturnBlock:             ; preds = %entry
17         ret void
20 declare i32 @bar(...)