[Demangle] Add a few more options to the microsoft demangler
[llvm-complete.git] / test / MachineVerifier / test_g_dyn_stackalloc.mir
blobe798f23e789cb52495683af679f0efa76759136b
1 # RUN: not llc -march=aarch64 -o /dev/null -run-pass=none -verify-machineinstrs %s 2>&1 | FileCheck %s
2 # REQUIRES: aarch64-registered-target
4 ---
5 name:            test_dyn_stackalloc
6 legalized:       true
7 tracksRegLiveness: true
8 body:             |
9   bb.0:
10     liveins: $x0
11     %0:_(s64) = COPY $x0
12     %1:_(p0) = COPY $x0
13     ; CHECK: Bad machine code: Too few operands
14     G_DYN_STACKALLOC
16     ; CHECK: dst operand 0 must be a pointer type
17     %3:_(s64) = G_DYN_STACKALLOC %0, 4
19     ; CHECK: src operand 1 must be a scalar reg type
20     %4:_(p0) = G_DYN_STACKALLOC 0, 4
22     ; CHECK: src operand 2 must be an immediate type
23     %5:_(p0) = G_DYN_STACKALLOC %0, %0
25 ...