xref: /llvm-project/lldb/test/Shell/Commands/command-disassemble-mixed.test (revision 5130e049ff43eee4fcabdfda3c626f1bc051ba31)
1extern int do_not_show;
2
3int main() {
4  int abc = 30;
5#line 0
6  return abc;
7}
8
9// RUN: %clang_host -g -x c -o %t.out %s
10// RUN: %lldb -b -o 'disassemble --mixed -n main' %t.out | FileCheck %s
11
12// CHECK: .out`main:
13// CHECK-NOT: do_not_show
14