mirror of
https://github.com/llvm/llvm-project.git
synced 2025-04-27 16:56:06 +00:00

Similar to commit 806761a7629df268c8aed49657aeccffa6bca449 to avoid issues due to object file format differences. These tests are currently benign.
26 lines
681 B
YAML
26 lines
681 B
YAML
# RUN: not --crash llc -mtriple=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
|
|
|
|
...
|