mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-23 19:23:23 +01:00
657e872155
This ensures that the prefix data is treated as part of the function for the purpose of debug info. This provides a better debugging experience, among other things by allowing a debug info client to correctly look up a function in debug info given a function pointer. llvm-svn: 193042
18 lines
315 B
LLVM
18 lines
315 B
LLVM
; RUN: llc < %s -mtriple=x86_64-unknown-unknown | FileCheck %s
|
|
|
|
@i = linkonce_odr global i32 1
|
|
|
|
; CHECK: f:
|
|
; CHECK-NEXT: .cfi_startproc
|
|
; CHECK-NEXT: .long 1
|
|
define void @f() prefix i32 1 {
|
|
ret void
|
|
}
|
|
|
|
; CHECK: g:
|
|
; CHECK-NEXT: .cfi_startproc
|
|
; CHECK-NEXT: .quad i
|
|
define void @g() prefix i32* @i {
|
|
ret void
|
|
}
|