1 | // RUN: %clang_cc1 -std=c++11 -emit-llvm -debug-info-kind=limited -triple x86_64-apple-darwin %s -o - | FileCheck %s |
---|---|
2 | |
3 | extern "C" { |
4 | extern int printf(const char * format, ...); |
5 | } |
6 | void foo (int &&i) |
7 | { |
8 | printf("%d\n", i); |
9 | } |
10 | |
11 | // CHECK: !DIDerivedType(tag: DW_TAG_rvalue_reference_type, baseType: ![[INT:[0-9]+]], size: 64) |
12 | // CHECK: ![[INT]] = !DIBasicType(name: "int" |
13 |