13 lines · plain
1; RUN: not --crash llc < %s -mtriple=x86_64-linux-gnueabi 2>&1 | FileCheck %s2 3define i32 @get_frame() nounwind {4entry:5; CHECK: register ebp is allocatable: function has no frame pointer6 %fp = call i32 @llvm.read_register.i32(metadata !0)7 ret i32 %fp8}9 10declare i32 @llvm.read_register.i32(metadata) nounwind11 12!0 = !{!"ebp\00"}13