Files
clang-p2996/clang/test/CodeGenCXX/extern-c.cpp
Hans Wennborg c9bd88e681 Remove the -cxx-abi command-line flag.
This makes the C++ ABI depend entirely on the target: MS ABI for -win32 triples,
Itanium otherwise. It's no longer possible to do weird combinations.

To be able to run a test with a specific ABI without constraining it to a
specific triple, new substitutions are added to lit: %itanium_abi_triple and
%ms_abi_triple can be used to get the current target triple adjusted to the
desired ABI. For example, if the test suite is running with the i686-pc-win32
target, %itanium_abi_triple will expand to i686-pc-mingw32.

Differential Revision: http://llvm-reviews.chandlerc.com/D2545

llvm-svn: 199250
2014-01-14 19:35:09 +00:00

66 lines
1.5 KiB
C++

// RUN: %clang_cc1 -triple %itanium_abi_triple -emit-llvm %s -o - | FileCheck %s
namespace foo {
// CHECK-NOT: @a = global i32
extern "C" int a;
// CHECK-NOT: @_ZN3foo1bE = global i32
extern int b;
// CHECK: @_ZN3foo1cE = global i32
int c = 5;
// CHECK-NOT: @_ZN3foo1dE
extern "C" struct d;
}
namespace test1 {
namespace {
struct X {};
}
extern "C" {
// CHECK: @test1_b = global
X test1_b = X();
}
void *use = &test1_b;
// CHECK: @_ZN5test13useE = global
}
namespace test2 {
namespace {
struct X {};
}
// CHECK: @test2_b = global
extern "C" X test2_b;
X test2_b;
}
extern "C" {
static int unused_var;
static int unused_fn() { return 0; }
__attribute__((used)) static int internal_var;
__attribute__((used)) static int internal_fn() { return 0; }
__attribute__((used)) static int duplicate_internal_var;
__attribute__((used)) static int duplicate_internal_fn() { return 0; }
namespace N {
__attribute__((used)) static int duplicate_internal_var;
__attribute__((used)) static int duplicate_internal_fn() { return 0; }
}
// CHECK: @llvm.used = appending global {{.*}} @internal_var {{.*}} @internal_fn
// CHECK-NOT: @unused
// CHECK-NOT: @duplicate_internal
// CHECK: @internal_var = alias internal i32* @_Z12internal_var
// CHECK-NOT: @unused
// CHECK-NOT: @duplicate_internal
// CHECK: @internal_fn = alias internal i32 ()* @_Z11internal_fnv
// CHECK-NOT: @unused
// CHECK-NOT: @duplicate_internal
}