brintos

brintos / llvm-project-archived public Read only

0
0
Text · 240 B · e078f34 Raw
14 lines · plain
1extern int do_not_show;2 3int main() {4  int abc = 30;5#line 06  return abc;7}8 9// RUN: %clang_host -g -x c -o %t.out %s10// RUN: %lldb -b -o 'disassemble --mixed -n main' %t.out | FileCheck %s11 12// CHECK: .out`main:13// CHECK-NOT: do_not_show14