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
69 lines
1.7 KiB
C++
69 lines
1.7 KiB
C++
// RUN: %clang_cc1 -fcxx-exceptions -fexceptions -emit-llvm -debug-info-kind=limited -triple x86_64-apple-darwin10 -std=c++98 %s -o - | FileCheck %s
|
|
// The landing pad should have the line number of the closing brace of the function.
|
|
// CHECK: ret i32
|
|
// CHECK: landingpad {{.*}}
|
|
// CHECK-NEXT: !dbg ![[LPAD:[0-9]+]]
|
|
// CHECK: ![[LPAD]] = !DILocation(line: 24, column: 1, scope: !{{.*}})
|
|
|
|
# 1 "/usr/include/c++/4.2.1/vector" 1 3
|
|
typedef long unsigned int __darwin_size_t;
|
|
typedef __darwin_size_t size_t;
|
|
namespace std {
|
|
template<typename _Tp>
|
|
class allocator
|
|
{
|
|
public:
|
|
template<typename _Tp1>
|
|
struct rebind
|
|
{ typedef allocator<_Tp1> other; };
|
|
~allocator() throw() { }
|
|
};
|
|
template<typename _Tp, typename _Alloc>
|
|
struct _Vector_base
|
|
{
|
|
typedef typename _Alloc::template rebind<_Tp>::other _Tp_alloc_type;
|
|
struct _Vector_impl
|
|
{
|
|
_Vector_impl(_Tp_alloc_type const& __a) { }
|
|
};
|
|
typedef _Alloc allocator_type;
|
|
_Vector_base(const allocator_type& __a)
|
|
: _M_impl(__a)
|
|
{ }
|
|
~_Vector_base() { }
|
|
_Vector_impl _M_impl;
|
|
};
|
|
template<typename _Tp, typename _Alloc = std::allocator<_Tp> >
|
|
class vector
|
|
: protected _Vector_base<_Tp, _Alloc>
|
|
{
|
|
typedef _Vector_base<_Tp, _Alloc> _Base;
|
|
public:
|
|
typedef _Tp value_type;
|
|
typedef size_t size_type;
|
|
typedef _Alloc allocator_type;
|
|
vector(const allocator_type& __a = allocator_type())
|
|
: _Base(__a)
|
|
{ }
|
|
size_type
|
|
push_back(const value_type& __x)
|
|
{}
|
|
};
|
|
}
|
|
# 10 "main.cpp" 2
|
|
|
|
|
|
|
|
|
|
int main (int argc, char const *argv[], char const *envp[])
|
|
{ // 15
|
|
std::vector<long> longs;
|
|
std::vector<short> shorts;
|
|
for (int i=0; i<12; i++)
|
|
{
|
|
longs.push_back(i);
|
|
shorts.push_back(i);
|
|
}
|
|
return 0; // 23
|
|
} // 24
|