
We have a new policy in place making links to private resources something we try to avoid in source and test files. Normally, we'd organically switch to the new policy rather than make a sweeping change across a project. However, Clang is in a somewhat special circumstance currently: recently, I've had several new contributors run into rdar links around test code which their patch was changing the behavior of. This turns out to be a surprisingly bad experience, especially for newer folks, for a handful of reasons: not understanding what the link is and feeling intimidated by it, wondering whether their changes are actually breaking something important to a downstream in some way, having to hunt down strangers not involved with the patch to impose on them for help, accidental pressure from asking for potentially private IP to be made public, etc. Because folks run into these links entirely by chance (through fixing bugs or working on new features), there's not really a set of problematic links to focus on -- all of the links have basically the same potential for causing these problems. As a result, this is an omnibus patch to remove all such links. This was not a mechanical change; it was done by manually searching for rdar, radar, radr, and other variants to find all the various problematic links. From there, I tried to retain or reword the surrounding comments so that we would lose as little context as possible. However, because most links were just a plain link with no supporting context, the majority of the changes are simple removals. Differential Review: https://reviews.llvm.org/D158071
42 lines
1.6 KiB
C++
42 lines
1.6 KiB
C++
// RUN: %clang_cc1 -triple %itanium_abi_triple -verify %s
|
|
// RUN: %clang_cc1 -triple %itanium_abi_triple -emit-llvm %s -o - -std=c++98 | FileCheck %s --check-prefix=CHECK-CXX98
|
|
// RUN: %clang_cc1 -triple %itanium_abi_triple -emit-llvm %s -o - -std=c++11 | FileCheck %s --check-prefix=CHECK-CXX11
|
|
// expected-no-diagnostics
|
|
|
|
#if __cplusplus >= 201103L
|
|
// CHECK-CXX11: @_ZZ15InitRefWithListvE1r = internal constant ptr @_ZGRZ15InitRefWithListvE1r_
|
|
// CHECK-CXX11: @_ZGRZ15InitRefWithListvE1r_ = internal constant i32 123
|
|
int InitRefWithList() { static const int &r = {123}; return r; }
|
|
#endif
|
|
|
|
struct XPTParamDescriptor {};
|
|
struct nsXPTParamInfo {
|
|
nsXPTParamInfo(const XPTParamDescriptor& desc);
|
|
};
|
|
void a(XPTParamDescriptor *params) {
|
|
const nsXPTParamInfo& paramInfo = params[0];
|
|
}
|
|
|
|
// CodeGen of reference initialized const arrays.
|
|
namespace PR5911 {
|
|
template <typename T, int N> int f(const T (&a)[N]) { return N; }
|
|
int iarr[] = { 1 };
|
|
int test() { return f(iarr); }
|
|
}
|
|
|
|
struct Foo { int foo; };
|
|
Foo& ignoreSetMutex = *(new Foo);
|
|
|
|
// Binding to a bit-field that requires a temporary.
|
|
struct { int bitfield : 3; } s = { 3 };
|
|
const int &s2 = s.bitfield;
|
|
|
|
// In C++98, this forms a reference to itself. In C++11 onwards, this performs
|
|
// copy-construction.
|
|
struct SelfReference { SelfReference &r; };
|
|
extern SelfReference self_reference_1;
|
|
SelfReference self_reference_2 = {self_reference_1};
|
|
// CHECK-CXX98: @self_reference_2 = {{.*}}global %[[SELF_REF:.*]] { ptr @self_reference_1 }
|
|
// CHECK-CXX11: @self_reference_2 = {{(dso_local )?}}global %[[SELF_REF:.*]] zeroinitializer
|
|
// CHECK-CXX11: call {{.*}}memcpy{{.*}} @self_reference_2, {{.*}} @self_reference_1
|