Files
clang-p2996/clang/test/CodeGenCXX/pr31054.cpp
Fangrui Song dbc96b518b Revert "[CodeGenModule] Assume dso_local for -fpic -fno-semantic-interposition"
This reverts commit 789a46f2d7.

Accidentally committed.
2020-02-03 10:09:39 -08:00

13 lines
295 B
C++

// RUN: %clang_cc1 -triple x86_64-unknown-unknown -emit-llvm -o - %s | FileCheck %s
struct A { ~A(); };
void func() {
return;
static A k;
}
// Test that we did not crash, by checking whether function was created.
// CHECK-LABEL: define void @_Z4funcv() #0 {
// CHECK: ret void
// CHECK: }