aboutsummaryrefslogtreecommitdiff
path: root/llvm/test/CodeGen/X86/read-fp-no-frame-pointer.ll
blob: f59388e450baeb8789e216b6c7a99294e0624139 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
; RUN: not --crash llc < %s -mtriple=x86_64-linux-gnueabi 2>&1 | FileCheck %s

define i32 @get_frame() nounwind {
entry:
; CHECK: register ebp is allocatable: function has no frame pointer
  %fp = call i32 @llvm.read_register.i32(metadata !0)
  ret i32 %fp
}

declare i32 @llvm.read_register.i32(metadata) nounwind

!0 = !{!"ebp\00"}