diff options
author | Peter Collingbourne <peter@pcc.me.uk> | 2013-10-20 02:16:21 +0000 |
---|---|---|
committer | Peter Collingbourne <peter@pcc.me.uk> | 2013-10-20 02:16:21 +0000 |
commit | 0abc36205a39f3791342165502478bb51fe67f05 (patch) | |
tree | 96ed17054b2b8ec9e2dfcb318c443ad24584cf3e /test | |
parent | e52fac1632dc43d0595e06baf5743608b173dfbc (diff) | |
download | external_llvm-0abc36205a39f3791342165502478bb51fe67f05.zip external_llvm-0abc36205a39f3791342165502478bb51fe67f05.tar.gz external_llvm-0abc36205a39f3791342165502478bb51fe67f05.tar.bz2 |
Emit prefix data after debug and EH directives.
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.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@193042 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test')
-rw-r--r-- | test/CodeGen/X86/prefixdata.ll | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/test/CodeGen/X86/prefixdata.ll b/test/CodeGen/X86/prefixdata.ll index 2ffa89d..2ec1892 100644 --- a/test/CodeGen/X86/prefixdata.ll +++ b/test/CodeGen/X86/prefixdata.ll @@ -3,12 +3,14 @@ @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 |