mstorsjo added a comment.
Can someone commit this for me?
https://reviews.llvm.org/D22774
___
cfe-commits mailing list
cfe-commits@lists.llvm.org
http://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits
Author: d0k
Date: Sat Aug 6 06:21:04 2016
New Revision: 277918
URL: http://llvm.org/viewvc/llvm-project?rev=277918&view=rev
Log:
Move helpers into anonymous namespaces. NFC.
Modified:
cfe/trunk/lib/Frontend/CompilerInvocation.cpp
cfe/trunk/lib/Sema/SemaTemplate.cpp
cfe/trunk/lib/Seri
Author: d0k
Date: Sat Aug 6 06:20:59 2016
New Revision: 277917
URL: http://llvm.org/viewvc/llvm-project?rev=277917&view=rev
Log:
[StaticAnalyzer] Remove dead code.
Modified:
cfe/trunk/include/clang/StaticAnalyzer/Core/PathSensitive/MemRegion.h
cfe/trunk/lib/StaticAnalyzer/Core/MemRegion.
Author: d0k
Date: Sat Aug 6 06:28:20 2016
New Revision: 277920
URL: http://llvm.org/viewvc/llvm-project?rev=277920&view=rev
Log:
[Sema] Make switch fully covered again.
Modified:
cfe/trunk/lib/Sema/SemaExpr.cpp
Modified: cfe/trunk/lib/Sema/SemaExpr.cpp
URL:
http://llvm.org/viewvc/llvm-proj
Author: d0k
Date: Sat Aug 6 07:45:16 2016
New Revision: 277923
URL: http://llvm.org/viewvc/llvm-project?rev=277923&view=rev
Log:
[ASTReader] Use real move semantics instead of emulating them in the copy ctor.
No functionality change intended.
Modified:
cfe/trunk/lib/Serialization/ASTReaderD
phosek created this revision.
phosek added a subscriber: cfe-commits.
When libcxxabi is being built standalone, unwind dependency is not available,
so do not use it even when LLVM unwinder is being requested.
https://reviews.llvm.org/D23228
Files:
test/CMakeLists.txt
Index: test/CMakeLists.t
Author: compnerd
Date: Sat Aug 6 12:58:24 2016
New Revision: 277928
URL: http://llvm.org/viewvc/llvm-project?rev=277928&view=rev
Log:
Headers: Add ARM support to intrin.h for MSVC compatibility
This fixes compiling with headers from the Windows SDK for ARM, where the
YieldProcessor function (in
compnerd closed this revision.
compnerd added a comment.
SVN r277928
https://reviews.llvm.org/D22774
___
cfe-commits mailing list
cfe-commits@lists.llvm.org
http://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits
jlebar created this revision.
jlebar added a reviewer: tra.
jlebar added a subscriber: cfe-commits.
Previously these sort of worked because they didn't end up resulting in
calls at the ptx layer. But I'm adding stricter checks that break
placement new without these changes.
https://reviews.llvm.
jlebar created this revision.
jlebar added a reviewer: tra.
jlebar added a subscriber: cfe-commits.
I want to reuse "CheckCUDAFoo" in a later patch. Also, I think
IsAllowedCUDACall gets the point across more clearly.
https://reviews.llvm.org/D23238
Files:
clang/include/clang/Sema/Sema.h
cla
jlebar created this revision.
jlebar added a reviewer: tra.
jlebar added a subscriber: cfe-commits.
When we emit err_ref_bad_target, we should emit a "'method' declared
here" note. We already do so in most places, just not in
BuildCallToMemberFunction.
https://reviews.llvm.org/D23240
Files:
c
jlebar created this revision.
jlebar added a reviewer: rnk.
jlebar added subscribers: tra, cfe-commits.
This patch lets you create diagnostics that are emitted if and only if a
particular FunctionDecl is codegen'ed.
This is necessary for CUDA, where some constructs -- e.g. calls from
host+device
jlebar created this revision.
jlebar added reviewers: tra, rnk.
jlebar added a subscriber: cfe-commits.
Some function calls in CUDA are allowed to appear in
semantically-correct programs but are an error if they're ever
codegen'ed. Specifically, a host+device function may call a host
function, bu
Author: sylvestre
Date: Sat Aug 6 15:23:54 2016
New Revision: 277935
URL: http://llvm.org/viewvc/llvm-project?rev=277935&view=rev
Log:
Add the new scan-build option (--show-description) in the 4.0 release notes
Modified:
cfe/trunk/docs/ReleaseNotes.rst
Modified: cfe/trunk/docs/ReleaseNotes.
omtcyfz added a comment.
`.cpp.rename-at.yaml`? I understand it's done for the purpose of doing `-input
%s.rename-at.yaml`, though I don't think getting proper names for them and
either doing some string magic in tool invocation or just passing full name is
wrong.
Other than that my concerns s
omtcyfz added a comment.
+ I'll take a look again on Monday, too. May be too sleepy now :)
https://reviews.llvm.org/D23198
___
cfe-commits mailing list
cfe-commits@lists.llvm.org
http://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits
omtcyfz created this revision.
omtcyfz added reviewers: alexfh, Eugene.Zelenko.
omtcyfz added a subscriber: cfe-commits.
Fixing bug https://llvm.org/bugs/show_bug.cgi?id=28854.
Implicit cast with ternary operator makes AST look in a way in which it feels
reasonable to add second matcher to detec
Hi.
When indent is four spaces, "if" conditions spanning multiple lines
could be difficult to discern from the "if" body. Indentation is the
same, so they are visually blending. (See example below). One of the
solutions is to place opening brace on a separate line when "if"
condition spans multipl
Prazek added inline comments.
Comment at: clang-tidy/modernize/UseBoolLiteralsCheck.cpp:38-43
@@ +37,8 @@
+ unless(isInTemplateInstantiation(,
+ anyOf(hasTrueExpression(ignoringParenImpCasts(
+integerLiteral().bind("trueBranchLiteral")
19 matches
Mail list logo