You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
730 B
11 lines
730 B
// 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; }
|
|
|