Author: rsmith
Date: Mon Dec 19 17:59:34 2016
New Revision: 290146
URL: http://llvm.org/viewvc/llvm-project?rev=290146&view=rev
Log:
Fix completely bogus types for some builtins:
* In C++, never create a FunctionNoProtoType for a builtin (fixes C++1z
crasher from r289754).
* Fix type of __s
On 19 December 2016 at 13:22, Mike Aizatsky wrote:
> Richard,
>
> Clang crashes for me on this code while doing "check-all". This change
> seems to introduce the assert. Can you take a look?
>
> BTW I'm not sure why bots are green. Do we build libcxx with bootstrap
> compiler?
>
Apparently not i
chapuni added subscribers: cfe-commits, chapuni.
chapuni added a comment.
See r290113.
I saw linker error on mingw dll build.
Cannot export clang_findIncludesInFileWithBlock: symbol not defined
Cannot export clang_findReferencesInFileWithBlock: symbol not defined
Cannot export clang_visitC
On 12/19/2016 3:59 PM, Richard Smith via cfe-commits wrote:
Author: rsmith
Date: Mon Dec 19 17:59:34 2016
New Revision: 290146
URL:
http://llvm.org/viewvc/llvm-project/cfe/trunk/test/Sema/vfprintf-valid-redecl.c?rev=290146&r1=290145&r2=290146&view=diff
==
Author: gbiv
Date: Mon Dec 19 19:05:42 2016
New Revision: 290149
URL: http://llvm.org/viewvc/llvm-project?rev=290149&view=rev
Log:
Add the alloc_size attribute to clang.
This patch does three things:
- Gives us the alloc_size attribute in clang, which lets us infer the
number of bytes handed b
george.burgess.iv marked an inline comment as done.
george.burgess.iv added a comment.
Thanks, everyone! :)
Repository:
rL LLVM
https://reviews.llvm.org/D14274
___
cfe-commits mailing list
cfe-commits@lists.llvm.org
http://lists.llvm.org/cgi-bin/
This revision was automatically updated to reflect the committed changes.
Closed by commit rL290149: Add the alloc_size attribute to clang. (authored by
gbiv).
Changed prior to commit:
https://reviews.llvm.org/D14274?vs=77222&id=82046#toc
Repository:
rL LLVM
https://reviews.llvm.org/D14274
george.burgess.iv abandoned this revision.
george.burgess.iv added a comment.
Committed in https://reviews.llvm.org/rL290149. Thanks again!
https://reviews.llvm.org/D26410
___
cfe-commits mailing list
cfe-commits@lists.llvm.org
http://lists.llvm.org
> On Dec 14, 2016, at 1:20 PM, Manman wrote:
>
>
>> On Jul 20, 2016, at 12:10 PM, Richard Smith via cfe-commits
>> wrote:
>>
>> Author: rsmith
>> Date: Wed Jul 20 14:10:16 2016
>> New Revision: 276159
>>
>> URL: http://llvm.org/viewvc/llvm-project?rev=276159&view=rev
>> Log:
>> [modules] Do
Hello everyone,
Below are some buildbot numbers for the week of 12/04/2016 - 12/10/2016.
Please see the same data in attached csv files:
The longest time each builder was red during the last week;
"Status change ratio" by active builder (percent of builds that changed the
builder status from gre
Hello everyone,
Below are some buildbot numbers for the last week of 12/11/2016 -
12/17/2016.
Please see the same data in attached csv files:
The longest time each builder was red during the last week;
"Status change ratio" by active builder (percent of builds that changed the
builder status fro
> On Dec 16, 2016, at 2:10 PM, Peter Collingbourne via cfe-commits
> wrote:
>
> Author: pcc
> Date: Fri Dec 16 16:10:52 2016
> New Revision: 289996
>
> URL: http://llvm.org/viewvc/llvm-project?rev=289996&view=rev
> Log:
> IRGen: Fix assertion failure when creating debug info for an integer con
Author: adrian
Date: Mon Dec 19 20:10:02 2016
New Revision: 290155
URL: http://llvm.org/viewvc/llvm-project?rev=290155&view=rev
Log:
Update for LLVM global variable debug info API change.
This reapplies r289921.
Modified:
cfe/trunk/lib/CodeGen/CGDebugInfo.cpp
cfe/trunk/lib/CodeGen/CGDebu
Author: ahatanak
Date: Mon Dec 19 20:11:29 2016
New Revision: 290156
URL: http://llvm.org/viewvc/llvm-project?rev=290156&view=rev
Log:
[Parser] Correct typo after lambda capture initializer is parsed.
This patch fixes an assertion that is triggered when RecordLayoutBuilder
tries to compute the si
This revision was automatically updated to reflect the committed changes.
Closed by commit rL290156: [Parser] Correct typo after lambda capture
initializer is parsed. (authored by ahatanak).
Changed prior to commit:
https://reviews.llvm.org/D25206?vs=75819&id=82052#toc
Repository:
rL LLVM
h
mehdi_amini added inline comments.
Comment at: llvm/include/llvm/ADT/APFloat.h:800
- void makeLargest(bool Neg) { getIEEE().makeLargest(Neg); }
+ void makeLargest(bool Neg) {
+if (usesLayout(getSemantics())) {
jtony wrote:
> I know it is allowed to return
This revision was automatically updated to reflect the committed changes.
Closed by commit rL290159: Fix the spelling of 'bitfield' in diagnostics to be
consistently 'bit-field'. (authored by chandlerc).
Changed prior to commit:
https://reviews.llvm.org/D26530?vs=81008&id=82055#toc
Repository:
Author: chandlerc
Date: Mon Dec 19 20:43:58 2016
New Revision: 290159
URL: http://llvm.org/viewvc/llvm-project?rev=290159&view=rev
Log:
Fix the spelling of 'bitfield' in diagnostics to be consistently 'bit-field'.
The latter agrees with most existing diagnostics and the C and C++ standards.
Diff
francisco.lopes added a comment.
I'm waiting for this to land as well, it's crucial for coding windows code with
libclang assistance on a linux machine.
https://reviews.llvm.org/D21113
___
cfe-commits mailing list
cfe-commits@lists.llvm.org
http://
pcc added inline comments.
Comment at: lib/Basic/VirtualFileSystem.cpp:483
+CaseInsensitiveFileSystem::openFileForRead(const Twine &Path) {
+ SmallVector NewPath;
+ if (std::error_code EC = findCaseInsensitivePath(Path.str(), NewPath))
I wonder whether it would
smeenai added a comment.
Ping.
https://reviews.llvm.org/D27153
___
cfe-commits mailing list
cfe-commits@lists.llvm.org
http://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits
smeenai added a comment.
Ping.
https://reviews.llvm.org/D26949
___
cfe-commits mailing list
cfe-commits@lists.llvm.org
http://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits
smeenai requested a review of this revision.
smeenai added a comment.
Actually, I think this can stand on its own. I'll do the extern template fixes
in another diff.
Also, ping :)
https://reviews.llvm.org/D25208
___
cfe-commits mailing list
cfe-co
smeenai requested a review of this revision.
smeenai added a comment.
I think this actually stands well on its own. I'll do the extern template
annotations in a different diff.
Also, ping :)
https://reviews.llvm.org/D27430
___
cfe-commits mailing
I don't know much about who owns this sort of code, nor Vassil's
work/responsibility in this area - but if he's OK with it/feels able to
sign off on it, that'd be sufficient/fine by me (& others closer to it can
pipe up if he seems like not the right person to approve).
Thanks!
- Dave
On Mon, Dec
On Mon, Dec 19, 2016 at 9:39 AM Sean Callanan wrote:
> That would require making LLDB crash and collecting the relevant crash log
> data out of the user's own logs. This isn't impossible – but additionally
> the generation of that log is asynchronous and you don't quite know when
> it'll land.
>
ahatanak added a comment.
Thanks all for the review.
Comment at: cfe/trunk/test/SemaCXX/lambda-expressions.cpp:572
+void foo1() {
+ auto s0 = S1{[name=]() {}}; // expected-error 2 {{expected expression}}
+ auto s1 = S1{[name=name]() {}}; // expected-error {{use of undeclared
amaiorano created this revision.
amaiorano added reviewers: klimek, djasper, hans, cfe-commits.
This is more a workaround than a real fix. The real problem is that FS.addFile
uses clang::vfs::FileSystem::makeAbsolute to convert the input path to an
absolute path, while getStyle uses llvm::sys::f
Author: rsmith
Date: Tue Dec 20 01:24:53 2016
New Revision: 290166
URL: http://llvm.org/viewvc/llvm-project?rev=290166&view=rev
Log:
Add test for DR692.
Modified:
cfe/trunk/test/CXX/drs/dr6xx.cpp
Modified: cfe/trunk/test/CXX/drs/dr6xx.cpp
URL:
http://llvm.org/viewvc/llvm-project/cfe/trunk/t
101 - 129 of 129 matches
Mail list logo