blob: e078f341a694b6c4eeafcdf814333ef10ffdbf8e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
extern int do_not_show;
int main() {
int abc = 30;
#line 0
return abc;
}
// RUN: %clang_host -g -x c -o %t.out %s
// RUN: %lldb -b -o 'disassemble --mixed -n main' %t.out | FileCheck %s
// CHECK: .out`main:
// CHECK-NOT: do_not_show
|