1; RUN: not llc < %s -mtriple=bpfel 2>&1 | FileCheck %s 2 3define 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 8} 9