aboutsummaryrefslogblamecommitdiff
path: root/test/CodeGenCXX/debug-info-rvalue-ref.cpp
blob: 142f587fc62d663f1f334ba303618820435eabf2 (plain) (tree)
1
2
3
4
5
6
7
8
9
10









                                                                                              
                                                                                                                                          
// RUN: %clang_cc1 -std=c++11 -emit-llvm -g -triple x86_64-apple-darwin %s -o - | FileCheck %s

extern "C" {
extern int printf(const char * format, ...);
}
void foo (int &&i)
{
  printf("%d\n", i);
}

// CHECK: metadata !{i32 {{.*}}, null, null, null, i32 0, i64 0, i64 0, i64 0, i32 0, metadata !{{.*}}} ; [ DW_TAG_rvalue_reference_type ]