- Mar 19, 2013
-
-
Daniel Jasper authored
Before: switch (x) { case 1: // Do amazing stuff { g(); f(); } } After: switch (x) { case 1: // Do amazing stuff { g(); f(); } } llvm-svn: 177420
-
Adrian Prantl authored
Relax test to allow for attributes on other architectures. Caught by powerpc64-unknown-linux-gnu buildbot. llvm-svn: 177419
-
Jakob Stoklund Olesen authored
llvm-svn: 177418
-
Jakob Stoklund Olesen authored
llvm-svn: 177417
-
Greg Clayton authored
Fixed incorrect python that was trying to validate that we got a valid lldb.SBThread object by checking to see if it is equal to "None". This test is incorrect as functions that return lldb.SBThread objects never return None, they just return lldb.SBThread objects that contain invalid opaque classes. llvm-svn: 177416
-
Alexander Kornienko authored
Summary: This is implementation for /* */ comments only. Reviewers: djasper, klimek Reviewed By: djasper CC: cfe-commits Differential Revision: http://llvm-reviews.chandlerc.com/D547 llvm-svn: 177415
-
Chad Rosier authored
llvm-svn: 177414
-
Chad Rosier authored
logic as a QOI cleanup. rdar://13445327 llvm-svn: 177413
-
Eli Bendersky authored
llvm-svn: 177411
-
Eli Bendersky authored
llvm-svn: 177410
-
Alexey Samsonov authored
llvm-svn: 177409
-
Tobias Grosser authored
The code inside cindex.py was comparing NULL pointer returned by clang_parseTranslationUnit and clang_createTranslationUnit with None. However, as illustrated by the two tests I've added, those conditions were ineffective which resulted in assert triggering later on. Instead, a pointer is now treated as a boolean value, a NULL pointer being False. Contributed-by:
Xavier Deguillard <deguilx@gmail.com> llvm-svn: 177408
-
Evgeniy Stepanov authored
llvm-svn: 177407
-
Eli Bendersky authored
(and possibly others). The attached patch removes it, and tries to update comments accordingly. llvm-svn: 177406
-
Hal Finkel authored
Remove an accidentally-added instruction definition and add a comment in the test case. This is in response to a post-commit review by Bill Schmidt. No functionality change intended. llvm-svn: 177404
-
Sean Silva authored
Lit does support redirects in the 2>&1 style. llvm-svn: 177403
-
Rafael Espindola authored
llvm-svn: 177402
-
Evgeniy Stepanov authored
llvm-svn: 177401
-
Evgeniy Stepanov authored
llvm-svn: 177400
-
Rafael Espindola authored
If this should not happen, we should have an assert. If it should happen, we should have a test and remove the comment. In no case should we have this self inconsistent code. llvm-svn: 177399
-
Rafael Espindola authored
-no-integrated-as. It is the only assembler we have there. llvm-svn: 177398
-
Evgeniy Stepanov authored
llvm-svn: 177397
-
Alexey Samsonov authored
llvm-svn: 177396
-
Dmitry Vyukov authored
llvm-svn: 177395
-
Dmitry Vyukov authored
tsan: flush dead thread info earlier (when another thread is finished rather than new thread is created) llvm-svn: 177394
-
Dmitry Vyukov authored
llvm-svn: 177393
-
Alexey Samsonov authored
llvm-svn: 177392
-
Alexey Samsonov authored
llvm-svn: 177391
-
Dmitry Vyukov authored
llvm-svn: 177390
-
Dmitry Vyukov authored
llvm-svn: 177389
-
Dmitry Vyukov authored
llvm-svn: 177388
-
Dmitry Vyukov authored
llvm-svn: 177387
-
David Tweed authored
The testing to ensure a vector of zeros of type floating point isn't misclassified as negative zero can be simplified, as pointed out by Duncan Sands. llvm-svn: 177386
-
Alexey Samsonov authored
llvm-svn: 177385
-
Evgeniy Stepanov authored
llvm-svn: 177384
-
Evgeniy Stepanov authored
Moved this code to sanitizer_common. llvm-svn: 177383
-
Alexey Samsonov authored
llvm-svn: 177382
-
Dmitry Vyukov authored
helps to reduce memory consumption if an atomic is used only with relaxed ops (stats) llvm-svn: 177381
-
Renato Golin authored
The ARM backend currently has poor codegen for long sext/zext operations, such as v8i8 -> v8i32. This patch addresses this by performing a custom expansion in ARMISelLowering. It also adds/changes the cost of such lowering in ARMTTI. This partially addresses PR14867. Patch by Pete Couperus llvm-svn: 177380
-
Hal Finkel authored
llvm-svn: 177379
-