This reverts commit d618f1c3b12effd0c2bdb7d02108d3551f389d3d. This commit wasn't reviewed ahead of time and significant concerns were raised immediately after it landed. According to our developer policy this warrants immediate revert of the commit. https://llvm.org/docs/DeveloperPolicy.html#patch-reversion-policy Differential Revision: https://reviews.llvm.org/D155509
25 lines
458 B
C++
25 lines
458 B
C++
// RUN: %clang_cc1 %s -emit-llvm -triple %itanium_abi_triple -o - | FileCheck %s
|
|
// rdar: //8620524
|
|
// PR7851
|
|
struct string {
|
|
string (const string& );
|
|
string ();
|
|
~string();
|
|
};
|
|
|
|
string operator + (char ch, const string&);
|
|
|
|
template <class T>
|
|
void IntToString(T a)
|
|
{
|
|
string result;
|
|
T digit;
|
|
char((digit < 10 ? '0' : 'a') + digit) + result;
|
|
}
|
|
|
|
int main() {
|
|
// CHECK-LABEL: define linkonce_odr {{.*}}void @_Z11IntToStringIcEvT_(
|
|
IntToString('a');
|
|
}
|
|
|