1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-19 02:52:53 +02:00
llvm-mirror/test/MachineVerifier/test_g_dyn_stackalloc.mir
Yuanfang Chen b1c09bbef0 Revert "[Support] make report_fatal_error abort instead of exit"
This reverts commit 647c3f4e47de8a850ffcaa897db68702d8d2459a.

Got bots failure from sanitizer-windows and maybe others.
2020-01-15 17:52:25 -08:00

26 lines
671 B
YAML

# RUN: not llc -march=aarch64 -o /dev/null -run-pass=none -verify-machineinstrs %s 2>&1 | FileCheck %s
# REQUIRES: aarch64-registered-target
---
name: test_dyn_stackalloc
legalized: true
tracksRegLiveness: true
body: |
bb.0:
liveins: $x0
%0:_(s64) = COPY $x0
%1:_(p0) = COPY $x0
; CHECK: Bad machine code: Too few operands
G_DYN_STACKALLOC
; CHECK: dst operand 0 must be a pointer type
%3:_(s64) = G_DYN_STACKALLOC %0, 4
; CHECK: src operand 1 must be a scalar reg type
%4:_(p0) = G_DYN_STACKALLOC 0, 4
; CHECK: src operand 2 must be an immediate type
%5:_(p0) = G_DYN_STACKALLOC %0, %0
...