2 // REQUIRES: x86-registered-target
4 // RUN: rm -rf %t && mkdir %t
5 // RUN: ln -s %clang %t/i386-clang
7 // Check if invocation of "foo-clang" adds option "-target foo".
9 // RUN: %t/i386-clang -c -### %s 2>&1 | FileCheck -check-prefix CHECK-TG1 %s
10 // CHECK-TG1: Target: i386
12 // Check if invocation of "foo-clang --target=bar" overrides option "-target foo".
14 // RUN: %t/i386-clang -c --target=x86_64 -### %s 2>&1 | FileCheck -check-prefix CHECK-TG2 %s
15 // CHECK-TG2: Target: x86_64