- Dec 28, 2012
-
-
Alexey Samsonov authored
llvm-svn: 171184
-
- Dec 27, 2012
-
-
Rafael Espindola authored
The language linkage of redeclarations must match. GCC was already reporting an error for this. llvm-svn: 171139
-
- Dec 26, 2012
-
-
Rafael Espindola authored
Template instantiation can set the canonical decl to used after subsequent decls have been chained, so we have to check that too. llvm-svn: 171088
-
Rafael Espindola authored
This fixes pr14691, which I think is a regression from r168519. llvm-svn: 171077
-
- Dec 25, 2012
-
-
Erik Verbruggen authored
Changed getLocStart() and getLocEnd() to be required for Stmts, and make getSourceRange() optional. The default implementation for getSourceRange() is build the range by calling getLocStart() and getLocEnd(). llvm-svn: 171067
-
Guy Benyei authored
Add intel_ocl_bicc calling convention as a function attribute to clang. The calling convention is already implemented in LLVM. llvm-svn: 171056
-
Rafael Espindola authored
the body of a functions. The problem was that hasBody looks at the entire chain and causes problems to -fvisibility-inlines-hidden if the cache was not invalidated. Original message: Cache visibility of decls. This unifies the linkage and visibility caching. I first implemented this when working on pr13844, but the previous fixes removed the performance advantage of this one. This is still a step in the right direction for making linkage and visibility cheap to use. llvm-svn: 171053
-
NAKAMURA Takumi authored
It broke stage2. llvm-svn: 171050
-
Rafael Espindola authored
This unifies the linkage and visibility caching. I first implemented this when working on pr13844, but the previous fixes removed the performance advantage of this one. This is still a step in the right direction for making linkage and visibility cheap to use. llvm-svn: 171048
-
- Dec 24, 2012
-
-
Daniel Jasper authored
Apply all formatting changes that clang-format would apply to its own source code. All choices seem to improve readability (or at least not make it worse). No functional changes. llvm-svn: 171039
-
Daniel Jasper authored
This prevents formattings like this (assuming "parameter" doesn't fit the line): bool f = someFunction() && someFunctionWithParam( parameter) && someOtherFunction(); Here, "parameter" - the start of line 2 - has a parenthesis level of 2, but there are subsequent tokens ("&&" and "someOtherFunction") with a lower level. This is bad for readability as "parameter" hides "someOtherFunction". With this patch, this changes to: bool f = someFunction() && someFunctionWithParam(parameter) && someOtherFunction(); llvm-svn: 171038
-
Daniel Jasper authored
This changes: int Result = a + // force break b; return Result + // force break 5; To: int Result = a + // force break b; return Result + // force break 5; llvm-svn: 171032
-
Daniel Jasper authored
This fixes llvm.org/pr14686. We used to add too many spaces for different versions of overloaded operator function declarations/definitions. This patch changes, e.g. operator *() {} operator >() {} operator () () {} to operator*() {} operator>() {} operator()() {} llvm-svn: 171028
-
Evgeniy Stepanov authored
llvm-svn: 171020
-
NAKAMURA Takumi authored
/// \param argBegin,argEnd the arguments to evaluate and pass to the constructor llvm-svn: 171015
-
NAKAMURA Takumi authored
CGDecl.cpp: Prune three descriptions in two methods, CodeGenFunction::pushIrregularPartialArrayCleanup() and CodeGenFunction::pushRegularPartialArrayCleanup(). [-Wdocumentation] /// \param array - a value of type elementType* /// \param destructionKind - the kind of destruction required /// \param initializedElementCount - a value of type size_t* holding the number of successfully-constructed elements llvm-svn: 171013
-
NAKAMURA Takumi authored
DiagnosticRenderer.cpp: Prune one description in DiagnosticRenderer::emitMacroExpansions(). [-Wdocumentation] /// \param MacroSkipEnd The depth to stop skipping macro expansions. llvm-svn: 171012
-
NAKAMURA Takumi authored
llvm-svn: 171011
-
Daniel Jasper authored
With this patch, splitting after binary operators has a panelty corresponding to the operator's precedence. We used to ignore this and eagerly format like: if (aaaaaaaaaaaaaaaaaaaaaaaaa || bbbbbbbbbbbbbbbbbbbbbbbbb && ccccccccccccccccccccccccc) { .. } With this patch, this becomes: if (aaaaaaaaaaaaaaaaaaaaaaaaa || bbbbbbbbbbbbbbbbbbbbbbbbb && ccccccccccccccccccccccccc) { .. } llvm-svn: 171007
-
- Dec 23, 2012
-
-
Nico Weber authored
"return a*b;" was formatted as "return a *b;" and is now formatted as "return a * b;". Fixes PR14687 partially. llvm-svn: 170993
-
Nico Weber authored
llvm-svn: 170992
-
- Dec 22, 2012
-
-
Argyrios Kyrtzidis authored
reached EOF and did not expand the argument into the source context. llvm-svn: 170980
-
Argyrios Kyrtzidis authored
code-completion results, the SourceManager state may be slightly different when code-completing. And we don't even care for diagnostics when code-completing, anyway. llvm-svn: 170979
-
Richard Smith authored
PR14695: Fix assert from bad cast<>. Not every namespace is a NamespaceDecl; it might instead be a TranslationUnitDecl. llvm-svn: 170976
-
Ted Kremenek authored
This was removed with -Wunique-enum, which is still removed. The corresponding thread on cfe-comments for that warning is here: http://lists.cs.uiuc.edu/pipermail/cfe-dev/2012-September/024224.html If we get specific user feedback for -Wduplicate-enum we can evaluate whether or not to keep it. llvm-svn: 170974
-
Ted Kremenek authored
Fix typo: objc_no_direct_instance_variable_assignmemt => objc_no_direct_instance_variable_assignment. Fixes <rdar://problem/12927551>. llvm-svn: 170971
-
Anna Zaks authored
The new callback greatly simplifies the checker. llvm-svn: 170969
-
Douglas Gregor authored
case we can't find an exact width to use. Fixes crash in <rdar://problem/12456626>. llvm-svn: 170951
-
- Dec 21, 2012
-
-
Ted Kremenek authored
This simplifies some diagnostic logic in checkUnsafeAssignLiteral(), hopefully making it less error prone. llvm-svn: 170945
-
Chad Rosier authored
llvm-svn: 170938
-
Chad Rosier authored
llvm-svn: 170933
-
Ted Kremenek authored
Along the way, fix a bug in CheckLiteralKind(), previously in diagnoseObjCLiteralComparison, where we didn't ignore parentheses in boxed expressions for purpose of classification. In other words, both @42 and @(42) should be classified as numeric literals. llvm-svn: 170931
-
Ted Kremenek authored
No immediate (intended) functionality change. llvm-svn: 170930
-
Fariborz Jahanian authored
found by running -ast-print on all-std-headers.cpp which caused it to go into infinite loop. Now -ast-print prints all declarations found in all-std-headers.cpp. llvm-svn: 170928
-
Chad Rosier authored
llvm-svn: 170925
-
Chad Rosier authored
llvm-svn: 170924
-
Ted Kremenek authored
llvm-svn: 170920
-
Ted Kremenek authored
llvm-svn: 170919
-
Chad Rosier authored
llvm-svn: 170918
-
Nico Weber authored
llvm-svn: 170914
-