[clang][modules] Don't prevent translation of FW_Private includes when explicitly...
[llvm-project.git] / clang / test / CodeGen / SystemZ / vec-abi-gnuattr-02.c
blob8c44c14cc2459b802314ff94944e795bf7b8fd18
1 // RUN: %clang_cc1 -triple s390x-ibm-linux -emit-llvm -fzvector -o - %s 2>&1 \
2 // RUN: | FileCheck %s
3 //
4 // Test that the "s390x-visible-vector-ABI" module flag is not emitted.
6 // Call to external function *without* vector argument.
8 void bar(int arg);
10 void foo() {
11 int Var = 0;
12 bar(Var);
15 //CHECK-NOT: !{i32 2, !"s390x-visible-vector-ABI", i32 1}