- Jun 29, 2010
-
-
Devang Patel authored
Inspired by Artur Pietrek. llvm-svn: 107202
-
Bob Wilson authored
llvm-svn: 107201
-
Duncan Sands authored
SmallArray[SmallSize] in the SmallPtrSetIteratorImpl, and this is one off the end of the array. For those who care, right now gcc warns about writing off the end because it is confused about the declaration of SmallArray as having length 1 in the parent class SmallPtrSetIteratorImpl. However if you tweak code to unconfuse it, then it still warns about writing off the end of the array, because of this buffer overflow. In short, even with this fix gcc-4.6 will warn about writing off the end of the array, but now that is only because it is confused. llvm-svn: 107200
-
Duncan Sands authored
of two, no need to do it a second time (NextPowerOfTwo is idempotent). llvm-svn: 107199
-
Johnny Chen authored
lldb.SBDebugger.Initialize()/Terminate() pair. Change TestHelp.py to use synchronous debugging, which is easier to work with. llvm-svn: 107198
-
Douglas Gregor authored
looking for, reset the name within the LookupResult structure in addition to clearing out the results. Fixes PR7508. llvm-svn: 107197
-
Chris Lattner authored
it doesn't dangle as types get refined. This fixes Shootout-C++/lists1 and probably also PR7522. llvm-svn: 107196
-
Chris Lattner authored
and make PATypeHolder work with null pointers. The implicitly generated one didn't work on numerous levels, but was still accepted, allowing all sorts of bugs with default constructed pa type holders. Previously, they "sort of" worked if they were default constructed and then destructed. Now they really work, and you can even default construct one, then assign to it, amazing. llvm-svn: 107195
-
Douglas Gregor authored
llvm-svn: 107194
-
Jakob Stoklund Olesen authored
A partial redefine needs to be treated like a tied operand, and the register must be reloaded while processing use operands. This fixes a bug where partially redefined registers were processed as normal defs with a reload added. The reload could clobber another use operand if it was a kill that allowed register reuse. llvm-svn: 107193
-
Douglas Gregor authored
llvm-svn: 107191
-
Bob Wilson authored
The LowerSubregs pass needs to preserve implicit def operands attached to EXTRACT_SUBREG instructions when it replaces those instructions with copies. llvm-svn: 107189
-
Howard Hinnant authored
llvm-svn: 107187
-
Daniel Dunbar authored
llvm-svn: 107186
-
Daniel Dunbar authored
with bit-fields. llvm-svn: 107185
-
Bruno Cardoso Lopes authored
llvm-svn: 107178
-
Dan Gohman authored
llvm-svn: 107177
-
Chris Lattner authored
of CanQualTypes to be passed in. llvm-svn: 107176
-
Dan Gohman authored
llvm-svn: 107175
-
Fariborz Jahanian authored
unimplemented property warning for properties coming from class's conformin protocol. It also simplifies the algorithm in the process. Fixes radar 8035776. llvm-svn: 107174
-
Chris Lattner authored
works, the fix is quite simple: just make sure to call ConvertTypeRecursive when the function type being lowered is in the midst of ConvertType. llvm-svn: 107173
-
Douglas Gregor authored
"std", with a warning, to improve GCC compatibility. Fixes PR7517. As a drive-by, add typo correction for using directives. llvm-svn: 107172
-
Bruno Cardoso Lopes authored
llvm-svn: 107168
-
Bob Wilson authored
The encoding is the same as VMOV (from scalar to core register) except that the operands are in different places. llvm-svn: 107167
-
Bruno Cardoso Lopes authored
llvm-svn: 107166
-
Douglas Gregor authored
than the enumeration type itself takes. Fixes PR7477. llvm-svn: 107163
-
Jim Grosbach authored
llvm-svn: 107154
-
Daniel Dunbar authored
llvm-svn: 107153
-
Daniel Dunbar authored
llvm-svn: 107152
-
Chris Lattner authored
llvm-svn: 107150
-
Daniel Dunbar authored
of the compilation. - <rdar://problem/8141387> clang is always invoking dsymutil llvm-svn: 107149
-
Gabor Greif authored
llvm-svn: 107148
-
Bob Wilson authored
a CPSR operand to them causes an assertion failure, so apparently these instructions haven't been getting a lot of use. llvm-svn: 107147
-
Gabor Greif authored
llvm-svn: 107146
-
Gabor Greif authored
llvm-svn: 107145
-
Gabor Greif authored
llvm-svn: 107144
-
Jeffrey Yasskin authored
there's an explicit guard on isPolymorphic, and virtual bases don't affect the key function calculation. This allows people to call ASTContext::getKeyFunction on arbitrary classes. llvm-svn: 107143
-
Duncan Sands authored
is stripped off. Currently set unconditionally, since the API does not provide a way of working out if anything was actually stripped off. llvm-svn: 107142
-
Duncan Sands authored
llvm-svn: 107141
-
Rafael Espindola authored
of getPhysicalRegisterRegClass with it. If we want to make a copy (or estimate its cost), it is better to use the smallest class as more efficient operations might be possible. llvm-svn: 107140
-