This reverts commit 647c3f4e47de8a850ffcaa897db68702d8d2459a. Got bots failure from sanitizer-windows and maybe others.
13 lines
326 B
LLVM
13 lines
326 B
LLVM
; RUN: not 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"}
|