mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-02-24 12:29:33 +00:00
add source in comment
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@197642 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
960ede2e1d
commit
1d4866ccbf
@ -1,6 +1,18 @@
|
||||
; Test (r)value qualifiers on C++11 non-static member functions.
|
||||
; Generated from tools/clang/test/CodeGenCXX/debug-info-qualifiers.cpp
|
||||
;
|
||||
; class A {
|
||||
; public:
|
||||
; void l() const &;
|
||||
; void r() const &&;
|
||||
; };
|
||||
;
|
||||
; void g() {
|
||||
; A a;
|
||||
; auto pl = &A::l;
|
||||
; auto pr = &A::r;
|
||||
; }
|
||||
;
|
||||
; RUN: llc -filetype=obj -O0 < %s | llvm-dwarfdump - | FileCheck %s
|
||||
; CHECK: DW_TAG_subroutine_type DW_CHILDREN_yes
|
||||
; CHECK-NEXT: DW_AT_reference DW_FORM_flag_present
|
||||
|
Loading…
x
Reference in New Issue
Block a user