1 // REQUIRES: x86-registered-target
4 // NOTE: -fno-integrated-cc1 has been added to work around an ASAN failure
5 // caused by in-process cc1 invocation. Clang InterfaceStubs is not the
6 // culprit, but Clang Interface Stubs' Driver pipeline setup uncovers an
7 // existing ASAN issue when invoking multiple normal cc1 jobs along with
8 // multiple Clang Interface Stubs cc1 jobs together.
9 // There is currently a discussion of this going on at:
10 // https://reviews.llvm.org/D69825
11 // RUN: mkdir -p %t; cd %t
12 // RUN: %clang -target x86_64-unknown-linux-gnu -x c -S \
13 // RUN: -fno-integrated-cc1 \
14 // RUN: -emit-interface-stubs %s %S/object.c %S/weak.cpp && \
15 // RUN: llvm-nm -D %t/a.out.ifso 2>&1 | FileCheck --check-prefix=CHECK-IFS %s
17 // CHECK-IFS-DAG: data
19 // CHECK-IFS-DAG: strongFunc
20 // CHECK-IFS-DAG: weakFunc
22 int foo(int bar
) { return 42 + 1844; }