1 // Check target CPUs are correctly passed. 2 3 // RUN: %clang -target csky -### -c %s -fsyntax-only 2>&1 -mcpu=ck801 | FileCheck -check-prefix=MCPU-CK801 %s 4 // MCPU-CK801: "-target-cpu" "ck801" 5 // MCPU-CK801: "-target-feature" "+elrw" "-target-feature" "+trust" "-target-feature" "+e1" 6 7 // RUN: %clang -target csky -### -c %s -fsyntax-only 2>&1 -mcpu=ck801t | FileCheck -check-prefix=MCPU-CK801T %s 8 // MCPU-CK801T: "-target-cpu" "ck801t" 9 // MCPU-CK801T: "-target-feature" "+elrw" "-target-feature" "+trust" "-target-feature" "+e1" 10 11 // RUN: %clang -target csky -### -c %s -fsyntax-only 2>&1 -mcpu=e801 | FileCheck -check-prefix=MCPU-E801 %s 12 // MCPU-E801: "-target-cpu" "e801" 13 // MCPU-E801: "-target-feature" "+elrw" "-target-feature" "+trust" "-target-feature" "+e1" 14 15 // RUN: %clang -target csky -### -c %s -fsyntax-only 2>&1 -mcpu=ck802 | FileCheck -check-prefix=MCPU-CK802 %s 16 // MCPU-CK802: "-target-cpu" "ck802" 17 // MCPU-CK802: "-target-feature" "+elrw" "-target-feature" "+trust" "-target-feature" "+nvic" 18 // MCPU-CK802: "-target-feature" "+e1" "-target-feature" "+e2" 19 20 // RUN: %clang -target csky -### -c %s -fsyntax-only 2>&1 -mcpu=ck802t | FileCheck -check-prefix=MCPU-CK802T %s 21 // MCPU-CK802T: "-target-cpu" "ck802t" 22 // MCPU-CK802T: "-target-feature" "+elrw" "-target-feature" "+trust" "-target-feature" "+nvic" 23 // MCPU-CK802T: "-target-feature" "+e1" "-target-feature" "+e2" 24 25 // TODO: Add more cpu test. 26