- Apr 13, 2010
-
-
Dan Gohman authored
the rest of CodeGen. llvm-svn: 101146
-
Dan Gohman authored
llvm-svn: 101145
-
Dan Gohman authored
llvm-svn: 101144
-
Dan Gohman authored
llvm-svn: 101143
-
Dan Gohman authored
that one operand is always greater than another. llvm-svn: 101142
-
Dan Gohman authored
llvm-svn: 101141
-
Eric Christopher authored
llvm-svn: 101139
-
Benjamin Kramer authored
llvm-svn: 101138
-
Douglas Gregor authored
for reference binding. The code attempted to handle both the computation of the ICS and the actual conversion, but the latter is an anachronism: we now use InitializationSequence for that. Sema::CheckReferenceInit is now a static function TryReferenceInit that's only use within overload resolution, and has been simplified slightly. It still needs to be updated per C++ [over.ics.ref], by eliminating more of the lvalue/rvalue checks. llvm-svn: 101136
-
Douglas Gregor authored
return a NULL expression; return either an error or a proper expression. Fixes PR6078. llvm-svn: 101133
-
Douglas Gregor authored
direct reference binding when the source and target types are not reference-related. Fixes PR6066. llvm-svn: 101132
-
Benjamin Kramer authored
llvm-svn: 101131
-
Benjamin Kramer authored
We have some code in llvm and clang where a BumpPtrAllocator is declared in a class but never used in the common case. Stop wasting memory there. llvm-svn: 101130
-
Zhongxing Xu authored
llvm-svn: 101129
-
Zhongxing Xu authored
llvm-svn: 101128
-
Zhongxing Xu authored
llvm-svn: 101127
-
Owen Anderson authored
llvm-svn: 101125
-
John McCall authored
members of non-templated classes. llvm-svn: 101122
-
Zhongxing Xu authored
llvm-svn: 101120
-
John McCall authored
PR6207. llvm-svn: 101119
-
Chris Lattner authored
llvm-svn: 101118
-
Owen Anderson authored
llvm-svn: 101117
-
Chris Lattner authored
patch by 'ether'. llvm-svn: 101116
-
Fariborz Jahanian authored
why it keeps failing on buildbot (but not for me). llvm-svn: 101115
-
Bob Wilson authored
recognize all the valid rotated immediates. This fixes the disassembler issue and will also help codegen for some unusual constant values. llvm-svn: 101114
-
Dan Gohman authored
numerator is an induction variable. For example, with code like this: for (i=0;i<n;++i) x[i%n] = 0; IndVarSimplify will now recognize that i is always less than n inside the loop, and eliminate the remainder. llvm-svn: 101113
-
John McCall authored
friend declaration; this used to be important but is now just a waste of time plus an unreasonable assertion. Fixes PR6174. llvm-svn: 101112
-
Daniel Dunbar authored
Type::getInt{1,8,...}[Ptr]Ty, so code can consistently use the methods on Type without occasionally needed to call IntegerType::get. llvm-svn: 101111
-
Daniel Dunbar authored
llvm-svn: 101110
-
Fariborz Jahanian authored
llvm-svn: 101109
-
Chris Lattner authored
patch by Sylvere Teissier! llvm-svn: 101108
-
Fariborz Jahanian authored
atomicity of aggregate properties in setter/getter methods. wip. llvm-svn: 101107
-
Chris Lattner authored
patch by Sylvere Teissier! llvm-svn: 101106
-
Devang Patel authored
llvm-svn: 101100
-
Chris Lattner authored
llvm-svn: 101099
-
John McCall authored
llvm-svn: 101098
-
Chris Lattner authored
PR6101. This is based on a patch and testcase by Jordy Rose! llvm-svn: 101097
-
Sean Callanan authored
after edis. Really, there ought to be some mechanism to ensure that PARALLEL_DIRS get built after DIRS. llvm-svn: 101095
-
Douglas Gregor authored
llvm-svn: 101092
-
Douglas Gregor authored
from a conversion function template specialization to one of exact match rank. We only know how to test this in C++0x with default function template arguments, but it's also in the C++03 spec. Fixes PR6285. llvm-svn: 101089
-