1 // RUN: %clang -### -target avr -no-canonical-prefixes -save-temps -mmcu=attiny102 %s 2>&1 | FileCheck --check-prefix=WARN0 %s
2 // WARN0: warning: support for linking stdlibs for microcontroller 'attiny102' is not implemented
3 // WARN0: warning: standard library not linked and so no interrupt vector table or compiler runtime routines will be linked
4 
5 // RUN: %clang -### -target avr -no-canonical-prefixes -save-temps -mmcu=atxmega32x1 %s 2>&1 | FileCheck --check-prefix=WARN1 %s
6 // WARN1: warning: support for linking stdlibs for microcontroller 'atxmega32x1' is not implemented
7 // WARN1: warning: standard library not linked and so no interrupt vector table or compiler runtime routines will be linked
8 
main()9 int main() { return 0; }
10 
11