The following warning is technically correct, but pretty much useless, since there aren't any frame variables that we'd expect the debugger to understand. > This version of LLDB has no plugin for the language "assembler". > Inspection of frame variables will be limited. This message is useful in the general case but should be suppressed for the "assembler" case. rdar://92745462
18 lines
696 B
Plaintext
18 lines
696 B
Plaintext
Test unsupported language warning
|
|
|
|
REQUIRES: shell
|
|
|
|
RUN: %clang_host %S/Inputs/true.c -std=c99 -g -c -S -emit-llvm -o - \
|
|
RUN: | sed -e 's/DW_LANG_C99/DW_LANG_Mips_Assembler/g' >%t.ll
|
|
RUN: %clang_host %t.ll -g -o %t.exe
|
|
RUN: %lldb -o "b main" -o r -o q -b %t.exe 2>&1 | FileCheck %s --check-prefix ASM
|
|
|
|
ASM-NOT: This version of LLDB has no plugin for the language "assembler"
|
|
|
|
RUN: %clang_host %S/Inputs/true.c -std=c99 -g -c -S -emit-llvm -o - \
|
|
RUN: | sed -e 's/DW_LANG_C99/DW_LANG_Cobol74/g' >%t.ll
|
|
RUN: %clang_host %t.ll -g -o %t.exe
|
|
RUN: %lldb -o "b main" -o r -o q -b %t.exe 2>&1 | FileCheck %s --check-prefix COBOL
|
|
|
|
COBOL: This version of LLDB has no plugin for the language "cobol74"
|