Revert " [LoongArch][ISel] Check the number of sign bits in `PatGprGpr_32` (#107432)"
[llvm-project.git] / llvm / test / CodeGen / X86 / undef-eflags.mir
blobbeb052157643f757ee4ab456f44149789c07107a
1 # RUN: llc -o - %s -mtriple=x86_64-- -verify-machineinstrs -run-pass branch-folder | FileCheck %s
2 # Check that we do not generate invalid MIR when optimizing condjumps with undef
3 # flags on the eflags input (currently we should just bail out).
4 ---
5 # CHECK-LABEL: name: fallundef
6 name: fallundef
7 tracksRegLiveness: true
8 body: |
9   bb.0:
10     JCC_1 %bb.1, 4, implicit undef $eflags
11     ; CHECK: JCC_1 %bb.1, 4, implicit undef $eflags
12     JMP_1 %bb.2
13   bb.1:
14     RET 2, undef $eax
16   bb.2:
17     RET 0, undef $eax
18 ...