- Mar 19, 2013
-
-
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
-
John McCall authored
we expect a related result type. rdar://12493140 llvm-svn: 177378
-
Andrew Trick authored
This reverts commit 82cd8f7382322bee7a71cdc31f7a923c44d37d32. Just add a comment instead! llvm-svn: 177377
-
Greg Clayton authored
- TestCase.m_thread is now filled in with the first thread that has a valid stop reason. This eliminates the need for the SelectMyThread() functions. - The first thread that stops for a reason is also set as the selected thread in the process in case any command line commands are run. - Changed launch over to take a SBLaunchInfo parameter so that the launch function doesn't keep getting new arguments as they are needed. - TestCase::Setup() and TestCase::Launch(SBLaunchInfo) now return bool to indicate success of setup and launch. - ActionWanted::Next(SBThread) was renamed to ActionWanted::StepOver(SBThread) - ActionWanted::Finish(SBThread) was renamed to ActionWanted::StepOut(SBThread) llvm-svn: 177376
-
Andrew Trick authored
Make the code more obvious to scan-build and humans. llvm-svn: 177375
-
Andrew Trick authored
No test case, but should fix a scan_build warning. llvm-svn: 177374
-