- Mar 22, 2012
-
-
Anna Zaks authored
llvm-svn: 153280
-
Anna Zaks authored
(Stats Checker). llvm-svn: 153279
-
Bill Wendling authored
llvm-svn: 153278
-
Bill Wendling authored
llvm-svn: 153277
-
Bill Wendling authored
few comments where none existed before. Also change a function's name to match the current coding standard. No functionality change. llvm-svn: 153276
-
Sean Callanan authored
- Addresses with no description were given comments, leading to useless comments like "; , " - Addresses weren't resolved with respect to the correct module. llvm-svn: 153274
-
Johnny Chen authored
that the inferior cannot execute past the watchpoint-triggering instruction. The solution is disable the watchpoint before resuming the inferior and make it hardware single step; when the inferior stops again due to single step, re-enable the watchpoint and disable the single step to make the inferior able to continue again without obstacle. rdar://problem/9667960 llvm-svn: 153273
-
Enrico Granata authored
This is the feature that allowed the user to have things like: class Base { ... }; class Derived : public Base { ... }; and have formatters defined for Base work automatically for Derived. This feature turned out to be too expensive since it requires completing types. This patch takes care of removing cascading (other than typedefs chain cascading), updating the test suite accordingly, and adding required Cocoa class names to keep the AppKit formatters working llvm-svn: 153272
-
Fariborz Jahanian authored
at global scope properly, issue diagnostics. llvm-svn: 153271
-
-
-
Johnny Chen authored
llvm-svn: 153268
-
Dan Gohman authored
llvm-svn: 153267
-
Greg Clayton authored
when using the "frame variable" or "target variable" commands. llvm-svn: 153266
-
Sean Callanan authored
crash in disassembly of VST instructions. llvm-svn: 153265
-
-
Andrew Trick authored
Keep the public interface clean, even though LLVM proper does not currently use it. llvm-svn: 153263
-
Andrew Trick authored
llvm-svn: 153262
-
Fariborz Jahanian authored
property attributes. // rdar://11095151 llvm-svn: 153261
-
Andrew Trick authored
llvm-svn: 153260
-
Andrew Trick authored
llvm-svn: 153259
-
Andrew Trick authored
llvm-svn: 153258
-
Andrew Trick authored
llvm-svn: 153257
-
Andrew Trick authored
canonical indvars. llvm-svn: 153256
-
Andrew Trick authored
llvm-svn: 153255
-
Argyrios Kyrtzidis authored
make sure to fully load its external lexical and visible declarations before re-writing it. rdar://10914192 llvm-svn: 153254
-
Silviu Baranga authored
Added soft fail checks for the disassembler when decoding some corner cases of the STRD, STRH, LDRD, LDRH, LDRSH and LDRSB instructions on ARM. llvm-svn: 153252
-
Silviu Baranga authored
llvm-svn: 153251
-
Silviu Baranga authored
llvm-svn: 153250
-
Alexander Potapenko authored
After the instructions are moved to the branch island, fixupInstructions() expands every 2-byte ja/je instruction with a 1-byte offset into a 6-byte ja/je with 32-bit offset. The offset is fixed to point to the original function. llvm-svn: 153249
-
Anders Waldenborg authored
llvm-svn: 153248
-
Richard Smith authored
llvm-svn: 153246
-
Craig Topper authored
llvm-svn: 153245
-
Ted Kremenek authored
"Teach" RetainCountChecker about dispatch_set_context, which can indirectly free its argument later. Fixes <rdar://problem/11059275>. llvm-svn: 153244
-
Chandler Carruth authored
relied on an artifact of how the inliner and subsequent passes in clang's -O3 mode happen to treat basic blocks and the labels for the basic blocks. In my work on the inliner, and changed this fundamental assumption, and the label that was being checked on the entry basic block will no longer appear in opt builds. There was no reason to expect the label to always be present anyways, much to my regret. I've changed the test to just ensure that we return an immediate constant. If there are intervening instructions, that's bad, but not really that relevant to the test. I'd love it if others have a better way of checking that a function body contains only a 'ret' instruction that isn't dependent on whether or not the entry block receives a label... llvm-svn: 153243
-
Ted Kremenek authored
Fix broken CFG when an initializer is a statement expression that starts with a while loop (PR 12325). llvm-svn: 153242
-
Chandler Carruth authored
(and hopefully on Windows). The bots have been down most of the day because of this, and it's not clear to me what all will be required to fix it. The commits started with r153205, then r153207, r153208, and r153221. The first commit seems to be the real culprit, but I couldn't revert a smaller number of patches. When resubmitting, r153207 and r153208 should be folded into r153205, they were simple build fixes. llvm-svn: 153241
-
Hal Finkel authored
I don't have a small test case yet, but I'll try to construct one. llvm-svn: 153240
-
Johnny Chen authored
member variables were not reset appropriately. llvm-svn: 153239
-
Chris Lattner authored
llvm-svn: 153238
-