brintos

brintos / llvm-project-archived public Read only

0
0
Text · 217 B · 046523d Raw
9 lines · plain
1; RUN: not llc < %s -mtriple=bpfel 2>&1 | FileCheck %s2 3define i64 @vla(i64 %num) {4; CHECK: unsupported dynamic stack allocation5    %vla = alloca i32, i64 %num6    %ret = ptrtoint ptr %vla to i647    ret i64 %ret8}9