sepavloff accepted this revision.
sepavloff added a comment.
This revision is now accepted and ready to land.
Indeed, this is a missing case. Thank you for fixing it!
LGTM
Repository:
rC Clang
https://reviews.llvm.org/D46286
___
cfe-commits mail
klimek added a comment.
I believe this was accepted by rnk - are you waiting for specific further
feedback?
https://reviews.llvm.org/D36610
___
cfe-commits mailing list
cfe-commits@lists.llvm.org
http://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-c
sammccall added inline comments.
Comment at: clang-doc/Index.h:28
+// Abstract class representing an index of mapped info objects.
+class Index {
+public:
What is this interface for? It looks like none of the functions are ever called
through the interface.
If
mstorsjo updated this revision to Diff 144839.
mstorsjo added a comment.
In order not to break test/Driver/cl-pch.cpp (I hadn't run the full testsuite
for this change before submitting the patch), I had to do another tweak, in
order not to claim any input argument after `--`. Does it still sound
Thanks.
If I remove some specific attributes, now I can think of the following
method.First of all, let me talk about my method.
1.Define target platforms that do not support attributes.such as def
TargetPower : TargetArch<["ppc", "ppc64", "ppc64le"]>;
2.Define TargetNotSupportedAttr class.
CarlosAlbertoEnciso added a comment.
In https://reviews.llvm.org/D46190#1083502, @rsmith wrote:
> This is already the correct outcome. Both typedefs are referenced; this is
> correct because they are named by the source code. Neither typedef is marked
> as "used"; this is correct because a type
ilya-biryukov added a comment.
> This is really a corner cases that users might not need to know about. But an
> example is:
> Code: "#include " (without \n at the end). After inserting , #include
> \n#include \n (this is good). However, if you insert another , the
> code would become "#includ
szepet updated this revision to Diff 144842.
szepet marked an inline comment as done.
szepet added a comment.
Yepp, good point, Aleksei, rewritten the tests using explicit instantiation.
https://reviews.llvm.org/D38845
Files:
lib/AST/ASTImporter.cpp
unittests/AST/ASTImporterTest.cpp
Index:
ilya-biryukov added inline comments.
Comment at: lib/Format/Format.cpp:1691
// 0. Otherwise, returns the priority of the matching category or INT_MAX.
- int getIncludePriority(StringRef IncludeName, bool CheckMainHeader) {
+ int getIncludePriority(StringRef IncludeName, bool
alexfh added inline comments.
Comment at: test/clang-tidy/modernize-raw-string-literal.cpp:42
char const *const HexNonPrintable("\\\x03");
char const *const Delete("\\\177");
+char const *const MultibyteSnowman("\xE2\x98\x83");
zinovy.nis wrote:
> By the way, A
martong created this revision.
martong added reviewers: a.sidorin, xazax.hun, szepet.
Herald added subscribers: cfe-commits, dkrupp, rnkovacs.
During import of a class template, lookup may find a forward declaration and
structural match falsely reports equivalency in between a fwd decl and a
def
martong added a comment.
> During import of a class template, lookup may find a forward declaration and
> structural match falsely reports equivalency in between a fwd decl and a
> definition.
This can happen when the class to be imported does not have any data members.
Structural equivalency
martong added a comment.
ping...
@xazax.hun could you please help me with the commit?
Repository:
rC Clang
https://reviews.llvm.org/D46019
___
cfe-commits mailing list
cfe-commits@lists.llvm.org
http://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-
martong accepted this revision.
martong added a comment.
LGTM!
Comment at: unittests/AST/ASTImporterTest.cpp:1505
::testing::Values(ArgVector(), ArgVector{"-fdelayed-template-parsing"}),);
+const internal::VariadicDynCastAllOfMatcher
+dependentScopeDeclRefExpr;
---
martong added inline comments.
Comment at: unittests/AST/ASTImporterTest.cpp:1532
+dependentNameType;
+TEST(ImportExpr, DependentNameType) {
+ MatchVerifier Verifier;
Perhaps a newline before would make it more independent from the Matcher, as
you did it at
JonasToth added a comment.
I see. Thank you for fixing + explaining :)
Am 30.04.2018 um 23:39 schrieb Shuai Wang via Phabricator:
> shuaiwang added a comment.
>
>> Why do you think that looping is required? From my understanding, we
>>
>> need the first usage (DeclRefExpr) to get the analysi
Author: szepet
Date: Wed May 2 04:52:54 2018
New Revision: 331344
URL: http://llvm.org/viewvc/llvm-project?rev=331344&view=rev
Log:
[ASTImporter] Fix isa cast assert
Do early return if we can't import the found decl for a member expr.
This follows the pre-existing scheme, e.g with E->getMemberDe
This revision was automatically updated to reflect the committed changes.
Closed by commit rL331344: [ASTImporter] Fix isa cast assert (authored by
szepet, committed by ).
Herald added a subscriber: llvm-commits.
Repository:
rL LLVM
https://reviews.llvm.org/D46019
Files:
cfe/trunk/lib/AST/A
Author: henrywong
Date: Wed May 2 05:11:22 2018
New Revision: 331345
URL: http://llvm.org/viewvc/llvm-project?rev=331345&view=rev
Log:
[analyzer] Add `TaintBugVisitor` to the ArrayBoundV2, DivideZero and VLASize.
Summary: Add `TaintBugVisitor` to the ArrayBoundV2, DivideZero, VLASize to be
able
This revision was automatically updated to reflect the committed changes.
Closed by commit rL331345: [analyzer] Add `TaintBugVisitor` to the
ArrayBoundV2, DivideZero and VLASize. (authored by henrywong, committed by ).
Herald added a subscriber: llvm-commits.
Changed prior to commit:
https://re
sammccall added inline comments.
Comment at: include/clang/Tooling/Core/Environment.h:1
+//===--- Environment.h - Sourece tooling environment --*- C++
-*---===//
+//
I'm not sure about this abstraction - I can't tell what it represents, and what
in futu
aaron.ballman added a comment.
This is getting closer, but it seems there are still unresolved comments from
reviewers. Are you planning to resolve those as well?
https://reviews.llvm.org/D44143
___
cfe-commits mailing list
cfe-commits@lists.llvm.o
MTC added a comment.
Sorry for the long delay, I have just finished my holiday.
Thanks a lot for the review, I will fix the typo in next update.
Comment at: lib/StaticAnalyzer/Checkers/CStringChecker.cpp:2100
+std::tie(StateNullChar, StateNonNullChar) =
+assumeZero
aaron.ballman added a comment.
> Have you run this over any large code bases to see whether the check triggers
> in practice?
I'm still curious about this, btw.
Comment at: clang-tidy/readability/RedundantDataCallCheck.cpp:45
+ anyOf(TypesMatcher, pointerType
Eugene.Zelenko added inline comments.
Comment at: clang-tidy/readability/RedundantDataCallCheck.cpp:45
+ anyOf(TypesMatcher, pointerType(pointee(TypesMatcher)),
+ callee(namedDecl(hasName("data"
+ .bind("call",
--
mikhail.ramalho added subscribers: rsmith, rnk.
mikhail.ramalho added a comment.
Last review asked to change the test case, I just want to make sure
everything is fine this time.
https://reviews.llvm.org/D36610
___
cfe-commits mailing list
cfe-commi
mikhail.ramalho added a comment.
Hi,
> Filename + offset for things like function parameters, where we have to
> identify the particular function declaration they're part of.
> For static functions themselveds, just the filename. I think this is
> current behavior in both cases.
But then we'r
aaron.ballman added inline comments.
Comment at: clang-tidy/readability/RedundantDataCallCheck.cpp:31
+void RedundantDataCallCheck::registerMatchers(MatchFinder *Finder) {
+ using namespace ast_matchers;
+
No need to register any of these matchers unless in C++
CarlosAlbertoEnciso added a comment.
In https://reviews.llvm.org/D46190#1083502, @rsmith wrote:
> Let's look at your original example again (I've cleaned it up and extended it
> a bit, but hopefully this matches your intent):
>
> namespace nsp {
> int var1, var2;
> }
>
> using nsp::v
Last review asked to change the test case, I just want to make sure
everything is fine this time.
2018-05-02 8:54 GMT+01:00 Manuel Klimek via Phabricator <
revi...@reviews.llvm.org>:
> klimek added a comment.
>
> I believe this was accepted by rnk - are you waiting for specific further
> feedback
Hi,
> Filename + offset for things like function parameters, where we have to
> identify the particular function declaration they're part of.
> For static functions themselveds, just the filename. I think this is
> current behavior in both cases.
>
>
But then we're back to the initial question, w
baloghadamsoftware added inline comments.
Comment at: lib/StaticAnalyzer/Core/RangeConstraintManager.cpp:265-276
+ const llvm::APSInt &from = i->From(), &to = i->To();
+ const llvm::APSInt &newFrom = (to.isMinSignedValue() ?
+ BV.getM
ilya-biryukov added a comment.
In https://reviews.llvm.org/D42966#1085257, @mikhail.ramalho wrote:
> Should we ignore linemarkers and use filename + offset of the real file?
I would say "yes". Let's not rely on linemarkers, unless we can explain why
that's a good idea.
> Should we try to calc
baloghadamsoftware updated this revision to Diff 144878.
baloghadamsoftware added a comment.
Herald added a reviewer: george.karpenkov.
Rebased.
https://reviews.llvm.org/D32904
Files:
lib/StaticAnalyzer/Checkers/IteratorChecker.cpp
test/Analysis/Inputs/system-header-simulator-cxx.h
test/A
On Wed, May 2, 2018 at 4:59 AM, 朴素 <772847...@qq.com> wrote:
> Thanks.
>
> If I remove some specific attributes, now I can think of the following
> method.First of all, let me talk about my method.
>
> 1.Define target platforms that do not support attributes.such as def
> TargetPower : TargetArch<[
mikhail.ramalho added a comment.
Hi,
> I would say "yes". Let's not rely on linemarkers, unless we can explain
> why that's a good idea.
Sounds reasonable to me, specially considering cases like rename and
find-declaration.
> Where do virtual files come from in the first place?
From the linem
Author: abataev
Date: Wed May 2 07:20:50 2018
New Revision: 331358
URL: http://llvm.org/viewvc/llvm-project?rev=331358&view=rev
Log:
[OPENMP] Emit names of the globals depending on target.
Some symbols are not allowed to be used as names on some targets. Patch
ries to unify the emission of the n
Author: malcolm.parsons
Date: Wed May 2 07:26:12 2018
New Revision: 331361
URL: http://llvm.org/viewvc/llvm-project?rev=331361&view=rev
Log:
[analyzer] Fix filename in cross-file HTML report
Summary:
The filename is currently taken from the start of the path, while the
line and column are taken
This revision was automatically updated to reflect the committed changes.
Closed by commit rC331361: [analyzer] Fix filename in cross-file HTML report
(authored by malcolm.parsons, committed by ).
Changed prior to commit:
https://reviews.llvm.org/D45611?vs=144742&id=144881#toc
Repository:
rC
Anastasia updated this revision to Diff 144885.
Anastasia added a comment.
The best way of adding common helper function I could come up with. The problem
is that string literals are created quite differently all over: using various
char types and const qualifiers. That seems to cover the most c
NoQ added a comment.
Thanks! I noticed the problem but never investigated it.
Repository:
rC Clang
https://reviews.llvm.org/D45611
___
cfe-commits mailing list
cfe-commits@lists.llvm.org
http://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits
Szelethus added a comment.
Thanks @NoQ for taking the time to review my code!
I'm sorry that the patch became this long. It was an error on my part, and I
completely get that the checker now takes an uncomfortably long time to read
and understand. This is my first "bigger" project in the CSA,
Anastasia updated this revision to Diff 144892.
Anastasia added a comment.
Added accidentally removed code and improved the test.
https://reviews.llvm.org/D46049
Files:
include/clang/AST/ASTContext.h
lib/AST/ASTContext.cpp
lib/AST/Expr.cpp
lib/Sema/SemaExpr.cpp
test/SemaOpenCL/predefi
Anastasia added a comment.
In https://reviews.llvm.org/D46049#1081196, @yaxunl wrote:
> Can you add a codegen test for 1.2, 2.0?
Anything specific you would like me to check? I am not modifying anything in
CodeGen here though.
> Also, I am wondering whether this is valid for OpenCL C++. Do we
Author: abataev
Date: Wed May 2 08:45:28 2018
New Revision: 331365
URL: http://llvm.org/viewvc/llvm-project?rev=331365&view=rev
Log:
[OPENMP] Support C++ member functions in the device constructs.
Added correct emission of the C++ member functions for the device
function when they are used in th
Author: jvesely
Date: Wed May 2 09:06:52 2018
New Revision: 331366
URL: http://llvm.org/viewvc/llvm-project?rev=331366&view=rev
Log:
clc_sqrt: Reuse unary_decl.inc
Signed-off-by: Jan Vesely
Reviewed-by: Aaron Watry
Tested-by: Aaron Watry
Removed:
libclc/trunk/generic/include/math/clc_sqr
pfultz2 added a comment.
Do you want the flag to be renamed?
Repository:
rCTE Clang Tools Extra
https://reviews.llvm.org/D46159
___
cfe-commits mailing list
cfe-commits@lists.llvm.org
http://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits
r.stahl added a comment.
Herald added a subscriber: martong.
I encountered an issue caused by this change.
In the scenario as shown below the call to getFileLoc causes the startLoc of
the BinaryOp to be after the endLoc, because the LHS (`s->a`) is located in the
marco argument while the RHS (`
ioeric updated this revision to Diff 144895.
ioeric marked 3 inline comments as done.
ioeric added a comment.
- addressed more review comments.
Repository:
rC Clang
https://reviews.llvm.org/D46180
Files:
lib/Format/Format.cpp
unittests/Format/CleanupTest.cpp
Index: unittests/Format/Clea
ioeric added inline comments.
Comment at: lib/Format/Format.cpp:1691
// 0. Otherwise, returns the priority of the matching category or INT_MAX.
- int getIncludePriority(StringRef IncludeName, bool CheckMainHeader) {
+ int getIncludePriority(StringRef IncludeName, bool CheckM
lebedev.ri added a comment.
In https://reviews.llvm.org/D46159#1085400, @pfultz2 wrote:
> Do you want the flag to be renamed?
I personally would //like// a bit better name, but i'm not sure what would be
better, so not a requirement.
Do you have some better choices?
Repository:
rCTE Clang
Author: abataev
Date: Wed May 2 09:52:07 2018
New Revision: 331372
URL: http://llvm.org/viewvc/llvm-project?rev=331372&view=rev
Log:
[OPENMP] Enable c++ exceptions outside of the target constructs iff they are
enabled for the host.
If the compilation for the host enables C++ exceptions, but they
yaxunl added a comment.
In https://reviews.llvm.org/D46049#1085388, @Anastasia wrote:
> In https://reviews.llvm.org/D46049#1081196, @yaxunl wrote:
>
> > Can you add a codegen test for 1.2, 2.0?
>
>
> Anything specific you would like me to check? I am not modifying anything in
> CodeGen here thou
sepavloff updated this revision to Diff 144898.
sepavloff added a comment.
Addressed review notes.
Repository:
rC Clang
https://reviews.llvm.org/D46241
Files:
lib/CodeGen/CGExprConstant.cpp
test/CodeGenCXX/cxx11-initializer-aggregate.cpp
Index: test/CodeGenCXX/cxx11-initializer-aggrega
sepavloff marked 3 inline comments as done.
sepavloff added inline comments.
Comment at: lib/CodeGen/CGExprConstant.cpp:1414
+ return true;
+}
+ }
rjmccall wrote:
> You should check the array fill expression here; for now, the test case would
> be some
yaxunl accepted this revision.
yaxunl added a comment.
LGTM. Thanks!
https://reviews.llvm.org/D46022
___
cfe-commits mailing list
cfe-commits@lists.llvm.org
http://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits
Author: paquette
Date: Wed May 2 09:42:51 2018
New Revision: 331370
URL: http://llvm.org/viewvc/llvm-project?rev=331370&view=rev
Log:
Add -foutline option to enable the MachineOutliner in AArch64
Since we've been working on productizing the MachineOutliner in AArch64, it
makes sense to provide a
Hi,
> I would say "yes". Let's not rely on linemarkers, unless we can explain
> why that's a good idea.
>
>
Sounds reasonable to me, specially considering cases like rename and
find-declaration.
>
> Where do virtual files come from in the first place?
>
>
>From the linemarker:
https://gcc.gnu.o
rjmccall added inline comments.
Comment at: lib/CodeGen/CGExprConstant.cpp:1403
+ if (auto *IL = dyn_cast_or_null(Init)) {
+if (InitTy->isConstantArrayType()) {
+ for (auto I : IL->inits())
Do you actually care if it's an array initialization instead of
phosek created this revision.
phosek added a reviewer: mcgrathr.
Herald added subscribers: cfe-commits, mgorny.
This changes some aspects of the build that are not relevant or useful
for Fuchsia like setting the RPATH/RUNPATH.
Repository:
rC Clang
https://reviews.llvm.org/D46361
Files:
cla
Author: abataev
Date: Wed May 2 10:39:00 2018
New Revision: 331377
URL: http://llvm.org/viewvc/llvm-project?rev=331377&view=rev
Log:
[OPENMP] Do not emit warning for implicitly declared target functions.
Since upcoming OpenMP 5.0 functions can be mapped implicitly as declare
target and we should
Author: vsapsai
Date: Wed May 2 10:50:43 2018
New Revision: 331378
URL: http://llvm.org/viewvc/llvm-project?rev=331378&view=rev
Log:
Emit an error when mixing and
Atomics in C and C++ are incompatible at the moment and mixing the
headers can result in confusing error messages.
Emit an error e
mcgrathr accepted this revision.
mcgrathr added a comment.
This revision is now accepted and ready to land.
fnu lgtm
Repository:
rC Clang
https://reviews.llvm.org/D46361
___
cfe-commits mailing list
cfe-commits@lists.llvm.org
http://lists.llvm.or
This revision was automatically updated to reflect the committed changes.
Closed by commit rC331378: Emit an error when mixing and
(authored by vsapsai, committed by ).
Changed prior to commit:
https://reviews.llvm.org/D45470?vs=143817&id=144903#toc
Repository:
rC Clan
aaron.ballman added a comment.
I am generally in favor of this but would be curious to see how the check
reacts to real world code bases. Facebook's usage experience is compelling, but
I'm also wondering how bad the false-positive rate is on existing code. Can you
try running the check over LLV
Author: vsapsai
Date: Wed May 2 10:56:45 2018
New Revision: 331379
URL: http://llvm.org/viewvc/llvm-project?rev=331379&view=rev
Log:
Emit an error when mixing and
Atomics in C and C++ are incompatible at the moment and mixing the
headers can result in confusing error messages.
Emit an error e
aaron.ballman added a comment.
Ping
https://reviews.llvm.org/D45944
___
cfe-commits mailing list
cfe-commits@lists.llvm.org
http://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits
aaron.ballman added a comment.
Ping x4
https://reviews.llvm.org/D43750
___
cfe-commits mailing list
cfe-commits@lists.llvm.org
http://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits
vsapsai added a comment.
Thanks for the review, Marshall.
In the end I removed `XFAIL: with_system_cxx_lib` from libc++ test as the
change is header-only at compile time. Library behaviour at runtime shouldn't
be affected.
Repository:
rC Clang
https://reviews.llvm.org/D45470
___
efriedma added a comment.
We don't expect user code to call these builtins directly anyway, so probably
not useful to test.
Repository:
rC Clang
https://reviews.llvm.org/D46328
___
cfe-commits mailing list
cfe-commits@lists.llvm.org
http://lists
aaron.ballman added inline comments.
Comment at: clang-tidy/utils/ExprMutationAnalyzer.cpp:42
+ const auto Memoized = Results.find(Exp);
+ if (Memoized != Results.end()) {
+return Memoized->second;
Can elide the braces.
Comment at: clang-
pfultz2 added a comment.
> Do you have some better choices?
I could do `-allow-alpha-checks`. What do you think?
Repository:
rCTE Clang Tools Extra
https://reviews.llvm.org/D46159
___
cfe-commits mailing list
cfe-commits@lists.llvm.org
http://li
modocache updated this revision to Diff 144908.
modocache added a comment.
Thanks for the review, @GorNishanov. Here's a more correct solution: an i1 is
used to keep track of whether await_resume threw. If it did, the coroutine body
is skipped, and we go straight to the final suspend point. Othe
craig.topper added a comment.
Is this ok to go in then?
Repository:
rC Clang
https://reviews.llvm.org/D46328
___
cfe-commits mailing list
cfe-commits@lists.llvm.org
http://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits
efriedma accepted this revision.
efriedma added a comment.
This revision is now accepted and ready to land.
LGTM
Repository:
rC Clang
https://reviews.llvm.org/D46328
___
cfe-commits mailing list
cfe-commits@lists.llvm.org
http://lists.llvm.org/cg
Author: abataev
Date: Wed May 2 11:44:10 2018
New Revision: 331385
URL: http://llvm.org/viewvc/llvm-project?rev=331385&view=rev
Log:
[OPENMP] Analyze the type of the mapped entity instead of its base.
If the mapped entity is a data member, we erroneously checked the type
of its base rather than
vsapsai created this revision.
vsapsai added a reviewer: kubamracek.
https://reviews.llvm.org/D46363
Files:
compiler-rt/test/tsan/Darwin/gcd-groups-destructor.mm
compiler-rt/test/tsan/Darwin/libcxx-shared-ptr-stress.mm
compiler-rt/test/tsan/Darwin/xpc-race.mm
Index: compiler-rt/test/tsan/
vsapsai added a comment.
Link to corresponding review that introduced the change is
https://reviews.llvm.org/D45470
Another option is to use `` and `std::atomic` but that will be
functionality change. I'd rather avoid that.
https://reviews.llvm.org/D46363
__
Author: danalbert
Date: Wed May 2 12:31:01 2018
New Revision: 331389
URL: http://llvm.org/viewvc/llvm-project?rev=331389&view=rev
Log:
[Driver] Obey computed sysroot when finding libc++ headers.
Summary:
A handful of targets will try some default paths if --sysroot is not provided.
If that is th
This revision was automatically updated to reflect the committed changes.
Closed by commit rC331389: [Driver] Obey computed sysroot when finding libc++
headers. (authored by danalbert, committed by ).
Changed prior to commit:
https://reviews.llvm.org/D45292?vs=141069&id=144915#toc
Repository:
Author: danalbert
Date: Wed May 2 12:38:37 2018
New Revision: 331390
URL: http://llvm.org/viewvc/llvm-project?rev=331390&view=rev
Log:
[Driver] Infer Android sysroot location.
Summary:
Android toolchains include their headers and libraries in a
self-contained directory within the toolchain.
Rev
This revision was automatically updated to reflect the committed changes.
Closed by commit rC331390: [Driver] Infer Android sysroot location. (authored
by danalbert, committed by ).
Changed prior to commit:
https://reviews.llvm.org/D45291?vs=141067&id=144916#toc
Repository:
rC Clang
https:/
Author: vsapsai
Date: Wed May 2 12:52:07 2018
New Revision: 331392
URL: http://llvm.org/viewvc/llvm-project?rev=331392&view=rev
Log:
Revert "Emit an error when mixing and "
It reverts r331378 as it caused test failures
ThreadSanitizer-x86_64 :: Darwin/gcd-groups-destructor.mm
ThreadSan
Author: abataev
Date: Wed May 2 13:03:27 2018
New Revision: 331393
URL: http://llvm.org/viewvc/llvm-project?rev=331393&view=rev
Log:
[OPENMP] Add support for reductions on simd directives in target
regions.
Added codegen for `simd reduction()` constructs in target directives.
Modified:
cfe/
kubamracek accepted this revision.
kubamracek added a comment.
This revision is now accepted and ready to land.
https://reviews.llvm.org/D46363
___
cfe-commits mailing list
cfe-commits@lists.llvm.org
http://lists.llvm.org/cgi-bin/mailman/listinfo/c
Author: dergachev
Date: Wed May 2 13:33:17 2018
New Revision: 331401
URL: http://llvm.org/viewvc/llvm-project?rev=331401&view=rev
Log:
[analyzer] Revert r331096 "CStringChecker: Add support for BSD strlcpy()...".
The return values of the newly supported functions were not handled correctly:
strl
dcoughlin added a comment.
In https://reviews.llvm.org/D46159#1085548, @pfultz2 wrote:
> > Do you have some better choices?
>
> I could do `-allow-alpha-checks`. What do you think?
That seems reasonable to me. Although I like `-allow-enabling-alpha-checks`
better because it is longer and will
NoQ reopened this revision.
NoQ added a comment.
This revision is now accepted and ready to land.
I reverted this for now. I'm sorry - i would have looked into this myself, but
unfortunately there are other important fixes that distract me at the moment.
Repository:
rC Clang
https://reviews.
lebedev.ri added a comment.
In https://reviews.llvm.org/D46159#1085684, @dcoughlin wrote:
> In https://reviews.llvm.org/D46159#1085548, @pfultz2 wrote:
>
> > > Do you have some better choices?
> >
> > I could do `-allow-alpha-checks`. What do you think?
>
>
> That seems reasonable to me.
> Al
devnexen added a comment.
Sure ! looking into it.
Repository:
rC Clang
https://reviews.llvm.org/D45177
___
cfe-commits mailing list
cfe-commits@lists.llvm.org
http://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits
NoQ added inline comments.
Comment at: lib/StaticAnalyzer/Core/RangeConstraintManager.cpp:265-276
+ const llvm::APSInt &from = i->From(), &to = i->To();
+ const llvm::APSInt &newFrom = (to.isMinSignedValue() ?
+ BV.getMaxValue(to) :
+
On 5/2/2018 9:42 AM, Jessica Paquette via cfe-commits wrote:
Author: paquette
Date: Wed May 2 09:42:51 2018
New Revision: 331370
URL: http://llvm.org/viewvc/llvm-project?rev=331370&view=rev
Log:
Add -foutline option to enable the MachineOutliner in AArch64
It probably makes sense to also have
rsmith added a comment.
Can you split this patch up a bit? There's changes here for the `<=>`
rewriting, but also for supporting `operator<=>(...) = default`, and some
constant evaluation and code generation changes too. It's a lot easier to
review more directed, smaller patches.
===
rsmith accepted this revision.
rsmith added a comment.
This revision is now accepted and ready to land.
I'm really sad about this; C++11 attributes were supposed to fix the
undisciplined "do what I mean" behavior of GNU attributes. But you're right,
these really are type attributes, and really s
ahatanak accepted this revision.
ahatanak added a comment.
This revision is now accepted and ready to land.
LGTM
Repository:
rC Clang
https://reviews.llvm.org/D46042
___
cfe-commits mailing list
cfe-commits@lists.llvm.org
http://lists.llvm.org/cg
Hmm yeah, you’re right, especially considering D45916. It would be nice to have
the desired behaviour just “fall out” of that patch. I’ll write a patch adding
the flag.
- Jessica
> On May 2, 2018, at 2:48 PM, Friedman, Eli wrote:
>
> On 5/2/2018 9:42 AM, Jessica Paquette via cfe-commits wrote
NoQ created this revision.
NoQ added reviewers: dcoughlin, xazax.hun, a.sidorin, george.karpenkov, szepet,
rnkovacs.
Herald added subscribers: cfe-commits, baloghadamsoftware.
As the old assertion says,
> "Thou shalt not initialize the same memory twice."
Namely, the `State->bindDefault()`/`Sto
Author: arphaman
Date: Wed May 2 15:40:19 2018
New Revision: 331409
URL: http://llvm.org/viewvc/llvm-project?rev=331409&view=rev
Log:
[ObjC] The absence of ownership qualifiers on an ambiguous property leads
to synthesis of a valid property even when the selected protocol property
has ownership q
juliehockett updated this revision to Diff 144948.
juliehockett marked 17 inline comments as done.
juliehockett added a comment.
Cleaning up and clarifying the merging process, and addressing comments
https://reviews.llvm.org/D43341
Files:
clang-doc/BitcodeReader.cpp
clang-doc/BitcodeReader
Author: chandlerc
Date: Wed May 2 15:57:20 2018
New Revision: 331411
URL: http://llvm.org/viewvc/llvm-project?rev=331411&view=rev
Log:
[gcov] Make the CLang side coverage test work with the new
instrumentation codegeneration strategy of using a data structure and
a loop. Required some finesse to
1 - 100 of 124 matches
Mail list logo