- Jun 06, 2013
-
-
Sergey Matveev authored
llvm-svn: 183414
-
Vincent Lejeune authored
Spotted by Benjamin Kramer. llvm-svn: 183413
-
Sergey Matveev authored
Leak annotation similar to HeapChecker's IgnoreObject(). llvm-svn: 183412
-
Alexey Samsonov authored
llvm-svn: 183411
-
Alexey Samsonov authored
llvm-svn: 183410
-
Joey Gouly authored
constant. Also fix some spelling mistakes and formatting issues. Reviewed by Richard Smith over IRC. Fixes PR15069. llvm-svn: 183409
-
Dmitry Vyukov authored
llvm-svn: 183408
-
Alexey Samsonov authored
llvm-svn: 183407
-
Hans Wennborg authored
llvm-svn: 183406
-
Dmitry Vyukov authored
llvm-svn: 183405
-
Benjamin Kramer authored
llvm-svn: 183404
-
Rafael Espindola authored
llvm-svn: 183403
-
Dmitry Vyukov authored
llvm-svn: 183402
-
Alexey Samsonov authored
llvm-svn: 183401
-
Alexey Samsonov authored
[ASan] lit tests: create common autogenerated config for running compiler-rt lit tests, and use it in ASan llvm-svn: 183400
-
Pavel Labath authored
Summary: This adds a command line argument '-analyze' to clang-check which runs the clang static analyzer on the source files. Reviewers: klimek CC: cfe-commits, revane Differential Revision: http://llvm-reviews.chandlerc.com/D926 llvm-svn: 183399
-
Pavel Labath authored
Summary: This patch creates a new ArgumentsAdjuster, which removes all -o parameters from the command line. This adjuster is inserted by default into the ClangTool pipeline. Reviewers: klimek CC: cfe-commits, revane Differential Revision: http://llvm-reviews.chandlerc.com/D925 llvm-svn: 183398
-
Richard Smith authored
just copy-list-initialization in a variable declaration. This effectively reverts r142147. llvm-svn: 183397
-
Alexey Samsonov authored
llvm-svn: 183395
-
Hans Wennborg authored
This became allowed by accident in r131201, but triggers an assert. That patch added an exception to allow conversion from pointers to narrow integral types for MSVC compatibility. However, a pointer can already be converted to bool in a civilized manner; allowing conversion via reinterpret_cast is a bad idea. Fixes PR16222. llvm-svn: 183394
-
Daniel Jasper authored
The leading "}" in the construct "} else if (..) {" was confusing the expression parser. Thus, no fake parentheses were generated and the indentation was broken in some cases. llvm-svn: 183393
-
Alexey Samsonov authored
llvm-svn: 183392
-
Alexey Samsonov authored
llvm-svn: 183391
-
Alexey Samsonov authored
llvm-svn: 183390
-
Daniel Jasper authored
Before: return (my_int) aaaa; template <> void f<int>(int i)SOME_ANNOTATION; f("aaaa" SOME_MACRO(aaaa)"aaaa"); After: return (my_int)aaaa; template <> void f<int>(int i) SOME_ANNOTATION; f("aaaa" SOME_MACRO(aaaa) "aaaa"); llvm-svn: 183389
-
Richard Smith authored
must be initialized by a constant expression (not just a core constant expression), because we're going to emit it as a global. Core issue for this is pending. llvm-svn: 183388
-
Alexey Samsonov authored
llvm-svn: 183387
-
Bill Wendling authored
llvm-svn: 183385
-
Richard Trieu authored
llvm-svn: 183372
-
NAKAMURA Takumi authored
FIXME: Is it false alarm? llvm-svn: 183371
-
NAKAMURA Takumi authored
llvm-svn: 183370
-
NAKAMURA Takumi authored
llvm-svn: 183369
-
Jordan Rose authored
We based decisions during analysis and during path generation on whether or not an expression is consumed, so if a top-level expression has cleanups it's important for us to look through that. <rdar://problem/14076125> llvm-svn: 183368
-
Jordan Rose authored
You can now dump a single PathDiagnosticPiece or PathDiagnosticLocation. llvm-svn: 183367
-
NAKAMURA Takumi authored
clang/unittests/Format/FormatTest.cpp: Suppress utf8 literals with _MSC_VER. MS cl.exe is unaware of BOM-less utf8 source files. FIXME: Encode Cyrillic and CJK characters below to appease MS compilers. llvm-svn: 183366
-
Bill Wendling authored
llvm-svn: 183365
-
rdar://problem/14064994Enrico Granata authored
Fixing a test case to correctly check that the class name has changed instead of relying on GetValueDidChange() llvm-svn: 183364
-
Jakub Staszak authored
llvm-svn: 183363
-
Sean Silva authored
llvm-svn: 183362
-
Bill Wendling authored
Caching it as a pointer allows us to reset it if the TargetMachine object changes. llvm-svn: 183361
-