brintos

brintos / llvm-project-archived public Read only

0
0
Text · 1.4 KiB · a0f350e Raw
26 lines · c
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 %s4// 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 %s8// 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 %s12// 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 %s16// 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 %s21// 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