Revert " [LoongArch][ISel] Check the number of sign bits in `PatGprGpr_32` (#107432)"
[llvm-project.git] / llvm / test / CodeGen / X86 / no-and8ri8.ll
blob57f33226602ef84c723405028e806092f9a1d9bc
1 ; RUN: llc -mtriple=x86_64-pc-linux -mattr=+avx512f --show-mc-encoding < %s | FileCheck %s
3 declare i1 @bar() 
5 ; CHECK-LABEL: @foo
6 ; CHECK-NOT: andb {{.*}} # encoding: [0x82,
7 define i1 @foo(i1 %i) nounwind {
8 entry:
9   br i1 %i, label %if, label %else
11 if:
12   %r = call i1 @bar()
13   br label %else
15 else:
16   %ret = phi i1 [%r, %if], [true, %entry]
17   ret i1 %ret