llvm-for-llvmta/tools/clang/test/Driver/avr-link-mcu-family-unimple...

11 lines
730 B
C
Raw Normal View History

2022-04-25 13:02:35 +02:00
// RUN: %clang -### -target avr -no-canonical-prefixes -save-temps -mmcu=attiny102 %s 2>&1 | FileCheck --check-prefix=WARN0 %s
// WARN0: warning: support for linking stdlibs for microcontroller 'attiny102' is not implemented
// WARN0: warning: standard library not linked and so no interrupt vector table or compiler runtime routines will be linked
// RUN: %clang -### -target avr -no-canonical-prefixes -save-temps -mmcu=atxmega32x1 %s 2>&1 | FileCheck --check-prefix=WARN1 %s
// WARN1: warning: support for linking stdlibs for microcontroller 'atxmega32x1' is not implemented
// WARN1: warning: standard library not linked and so no interrupt vector table or compiler runtime routines will be linked
int main() { return 0; }