bolt/deps/llvm-18.1.8/lldb/test/Shell/Commands/command-disassemble-mixed.test

14 lines
240 B
Text
Raw Normal View History

2025-02-14 19:21:04 +01:00
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