mirror of
https://github.com/Gericom/teak-llvm.git
synced 2025-06-25 14:28:54 -04:00

After mailing list discussion on 11-13 March we would prefer to stick to a single spelling of the long option. This reverts commit 30035fe1a7c759c89ee62eb46efce6b3790fcc08. llvm-svn: 237003
10 lines
395 B
C
10 lines
395 B
C
// RUN: %clang -no-canonical-prefixes --target=unknown-unknown-unknown -c %s \
|
|
// RUN: -o %t.o -### 2>&1 | FileCheck %s
|
|
//
|
|
// Ensure we get a crazy triple here as we asked for one.
|
|
// CHECK: Target: unknown-unknown-unknown
|
|
//
|
|
// Also check that the legacy spelling works.
|
|
// RUN: %clang -no-canonical-prefixes -target unknown-unknown-unknown -c %s \
|
|
// RUN: -o %t.o -### 2>&1 | FileCheck %s
|