Revert "[lldb][test] Remove compiler version check and use regex" (#124101)
[llvm-project.git] / llvm / test / CodeGen / MIR / Generic / bfloat-immediates.mir
blobc4e035a4f095cd7fbca7b897d5f518cc158bc862
1 # RUN: llc -run-pass none -o - %s | FileCheck %s
2 # This test ensures that the MIR parser parses bfloat immediates correctly.
4 ---
5 name: bfloat_immediates
6 body: |
7   bb.0:
8     ; CHECK: %0:_(s16) = G_FCONSTANT bfloat 0xR3E80
9     ; CHECK: %1:_(s16) = G_FCONSTANT bfloat 0xR3E80
10     %0:_(s16) = G_FCONSTANT bfloat 0xR3E80
11     %1:_(s16) = G_FCONSTANT bfloat 0.25
12 ...