• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1; 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"}
13