xref: /llvm-project/flang/test/Driver/override-triple.ll (revision 9d4a2baaa2c304066199ec6644da80aca7638dc6)
1; Verify that the module triple is overridden by the driver - even in the presence
2; of a module triple.
3; NOTE: At the time of writing, the tested behaviour was consistent with Clang
4
5; RUN: %flang_fc1 -S %s -o - 2>&1 | FileCheck %s
6; RUN: %flang -S  %s -o - 2>&1 | FileCheck %s
7
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 void
16}
17