blob: 9f78c294ce88e53c2c161be814aec6099a0ba606 [file] [log] [blame]
Pat Gavlina717f252015-07-09 17:40:29 +00001; RUN: not llc < %s -mtriple=x86_64-linux-gnueabi 2>&1 | FileCheck %s
2
3define i32 @get_frame() nounwind {
4entry:
5; CHECK: register ebp is allocatable: function has no frame pointer
6 %fp = call i32 @llvm.read_register.i32(metadata !0)
7 ret i32 %fp
8}
9
10declare i32 @llvm.read_register.i32(metadata) nounwind
11
12!0 = !{!"ebp\00"}