blob: d4e50295411ad906f522b4f2ba0d8bb32d17c9f2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
// REQUIRES: x86-registered-target
// RUN: %clang -target x86_64-unknown-linux-gnu -x c -o %t1.so -emit-interface-stubs %s %S/object.c %S/weak.cpp && \
// RUN: llvm-nm %t1.so 2>&1 | FileCheck --check-prefix=CHECK-IFS %s
// CHECK-IFS-DAG: data
// CHECK-IFS-DAG: foo
// CHECK-IFS-DAG: strongFunc
// CHECK-IFS-DAG: weakFunc
int foo(int bar) { return 42 + 1844; }
|