blob: 22d3640cdd96448036b1c5ee8d266b6502231ab5 (
plain)
1
2
3
4
5
6
7
|
// RUN: not %clang -target csky-unknown-elf -march=csky %s \
// RUN: -fsyntax-only 2>&1 | FileCheck -check-prefix=CSKY %s
// CSKY: error: invalid arch name '-march=csky'
// RUN: not %clang -target csky-unknown-elf -march=CK810 %s \
// RUN: -fsyntax-only 2>&1 | FileCheck -check-prefix=CSKY-UPPER %s
// CSKY-UPPER: error: invalid arch name '-march=CK810'
|