llvm-project/llvm/test/MachineVerifier/test_g_invoke_region_start.mir
Fangrui Song d20190e684 [test] Change llc -march=aarch64|arm64 to -mtriple=aarch64|arm64
Similar to commit 806761a7629df268c8aed49657aeccffa6bca449 to avoid issues due
to object file format differences. These tests are currently benign.
2023-09-29 10:13:06 -07:00

23 lines
502 B
YAML

#RUN: llc -mtriple=aarch64 -o - -global-isel -run-pass=none -verify-machineinstrs %s 2>&1 | FileCheck %s
# REQUIRES: aarch64-registered-target
---
name: test_invoke_start
legalized: true
regBankSelected: false
selected: false
tracksRegLiveness: true
liveins:
body: |
bb.0:
%0:_(s32) = G_CONSTANT i32 0
; Check we don't error when preceding a non-terminator
; CHECK: G_INVOKE_REGION_START
G_INVOKE_REGION_START
%1:_(s32) = G_ADD %0, %0
...