Revert " [LoongArch][ISel] Check the number of sign bits in `PatGprGpr_32` (#107432)"
[llvm-project.git] / llvm / test / CodeGen / BPF / dynamic-stack.ll
blob046523ded8001c2682dac548dacd8eb1ac47206d
1 ; RUN: not llc < %s -mtriple=bpfel 2>&1 | FileCheck %s
3 define i64 @vla(i64 %num) {
4 ; CHECK: unsupported dynamic stack allocation
5     %vla = alloca i32, i64 %num
6     %ret = ptrtoint ptr %vla to i64
7     ret i64 %ret