17 lines · plain
1; Verify that the module triple is overridden by the driver - even in the presence2; of a module triple.3; NOTE: At the time of writing, the tested behaviour was consistent with Clang4 5; RUN: %flang_fc1 -S %s -o - 2>&1 | FileCheck %s6; RUN: %flang -S %s -o - 2>&1 | FileCheck %s7 8; CHECK: warning: overriding the module target triple with {{.*}}9 10; For the triple to be overridden by the driver, it needs to be different to the host triple.11; Use a random string to guarantee that.12target triple = "invalid-triple"13 14define void @foo() {15 ret void16}17