2015-10-08 12:24:12 +08:00
|
|
|
// RUN: %clang_cc1 -triple x86_64-apple-darwin10 -debug-info-kind=limited -fblocks -emit-llvm -o - %s | FileCheck %s
|
2014-08-09 01:10:14 +08:00
|
|
|
|
|
|
|
// Check that arg numbering is not affected by LLVM IR argument numbering -
|
|
|
|
// since the latter is affected by return-by-out-parameter ABI requirements
|
|
|
|
|
|
|
|
// 1 for the argument number (1 indexed), 2 for the line number
|
|
|
|
// 16777218 == 1 << 24 | 2
|
|
|
|
// 33554434 == 2 << 24 | 2
|
|
|
|
// This explains the two magic numbers below, testing that these two arguments
|
|
|
|
// are numbered correctly. If they are not numbered correctly they may appear
|
|
|
|
// out of order or not at all (the latter would occur if they were both assigned
|
|
|
|
// the same argument number by mistake).
|
|
|
|
|
2015-08-01 02:59:37 +08:00
|
|
|
// CHECK: !DILocalVariable(name: ".block_descriptor", arg: 1,{{.*}}line: 2,
|
|
|
|
// CHECK: !DILocalVariable(name: "param", arg: 2,{{.*}}line: 2,
|
2014-08-09 01:10:14 +08:00
|
|
|
|
|
|
|
// Line directive so we don't have to worry about how many lines preceed the
|
|
|
|
// test code (as the line number is mangled in with the argument number as shown
|
|
|
|
// above)
|
|
|
|
#line 1
|
|
|
|
typedef struct { int array[12]; } BigStruct_t;
|
|
|
|
BigStruct_t (^a)() = ^(int param) {
|
|
|
|
BigStruct_t b;
|
|
|
|
return b;
|
|
|
|
};
|