inouehrs created this revision.
This patch enables `-fomit-frame-pointer` option by default for PowerPC if -O1
or above optimization level is specified.
GCC already enables this option by default for -O1 or above in all of ppc32,
ppc64 and ppc64le.
This option gives some performance improvements
Author: ctopper
Date: Thu Feb 9 00:22:43 2017
New Revision: 294560
URL: http://llvm.org/viewvc/llvm-project?rev=294560&view=rev
Log:
[X86] Fix copy and paste bug in clzero test from r294559.
Modified:
cfe/trunk/test/CodeGen/builtin-clzero.c
Modified: cfe/trunk/test/CodeGen/builtin-clzero.c
This revision was automatically updated to reflect the committed changes.
Closed by commit rL294559: [X86] Clzero flag addition and inclusion under
znver1 (authored by ctopper).
Changed prior to commit:
https://reviews.llvm.org/D29386?vs=87437&id=87762#toc
Repository:
rL LLVM
https://review
Author: ctopper
Date: Thu Feb 9 00:10:14 2017
New Revision: 294559
URL: http://llvm.org/viewvc/llvm-project?rev=294559&view=rev
Log:
[X86] Clzero flag addition and inclusion under znver1
1. Adds the command line flag for clzero.
2. Includes the clzero flag under znver1.
3. Defines the macro for
GGanesh added a comment.
Thank you @craig.topper.
Just want to check if the patch can be commited to 4.0 release branch as well.
I understand that the trunk is in blocker bug-fix stage but just want to get it
confirmed.
Repository:
rL LLVM
https://reviews.llvm.org/D29386
faisalv added inline comments.
Comment at: lib/AST/ExprConstant.cpp:5061
+ APValue RVal;
+ // FIXME: We need to make sure we're passing the right type that
+ // maintains cv-qualifiers.
I don't think we need this fixme - the type of the
faisalv created this revision.
faisalv added a project: clang-c.
Herald added a subscriber: EricWF.
This patch attempts to enable evaluation of all forms of captures (however
deeply nested) within constexpr lambdas.
Appreciate the feedback.
Thanks!
Repository:
rL LLVM
https://reviews.llvm.
craig.topper accepted this revision.
craig.topper added a comment.
This revision is now accepted and ready to land.
LGTM, but i'll make some additional testing changes before committing it.
-Add __CLZERO__ checks to test/Preprocessor/predefined-arch-macros.c for znver1
-Add command line testing t
vlad.tsyrklevich added inline comments.
Comment at: lib/StaticAnalyzer/Checkers/GenericTaintChecker.cpp:442
+
+const RecordDecl *RD = RT->getDecl()->getDefinition();
+for (const auto *I : RD->fields()) {
a.sidorin wrote:
> NoQ wrote:
> > We need to be car
Author: phosek
Date: Wed Feb 8 21:56:47 2017
New Revision: 294556
URL: http://llvm.org/viewvc/llvm-project?rev=294556&view=rev
Log:
Revert "[libunwind][CMake] Use libc++ headers when available"
This is causing build failure when building libc++abi with libunwind.
This reverts commit 42bf29501df
Author: phosek
Date: Wed Feb 8 20:20:25 2017
New Revision: 294554
URL: http://llvm.org/viewvc/llvm-project?rev=294554&view=rev
Log:
[libunwind][CMake] Use libc++ headers when available
libunwind depends on C++ library headers. When building libunwind
as part of LLVM and libc++ is available, use
Author: phosek
Date: Wed Feb 8 20:19:43 2017
New Revision: 294553
URL: http://llvm.org/viewvc/llvm-project?rev=294553&view=rev
Log:
[libcxx][CMake] Support in-tree libunwind when building as part of runtimes
When building as part of runtimes, there is no predefined order in
which the runtimes ar
Author: phosek
Date: Wed Feb 8 20:19:30 2017
New Revision: 294552
URL: http://llvm.org/viewvc/llvm-project?rev=294552&view=rev
Log:
[libcxxabi][CMake] Support in-tree libunwind when building as part of runtimes
When building as part of runtimes, there is no predefined order in
which the runtimes
It's blast from the past time!
On Tue, Sep 18, 2012 at 3:28 PM Hal Finkel wrote:
> Author: hfinkel
> Date: Tue Sep 18 17:25:07 2012
> New Revision: 164177
>
> URL: http://llvm.org/viewvc/llvm-project?rev=164177&view=rev
> Log:
> Add C/C++ header locations for the Freescale SDK.
>
> The Freescale
tigerleapgorge created this revision.
I am continuing to make our Lit tests C++11 compatible.
This patch defaults five Objective-C++ tests to run under -std=gnu++98
This patch is essentially a continuation of Bug 24344
https://llvm.org/bugs/show_bug.cgi?id=24344
Fix r289167 resolved all tests in
hubert.reinterpretcast added inline comments.
Comment at: include/clang/AST/DeclTemplate.h:373-391
+class TemplateDeclWithACBase {
+protected:
+ TemplateDeclWithACBase() = default;
+
+ ConstrainedTemplateDeclInfo CTDInfo;
+};
+
rsmith wrote:
> This mechanism se
Author: hans
Date: Wed Feb 8 18:14:34 2017
New Revision: 294547
URL: http://llvm.org/viewvc/llvm-project?rev=294547&view=rev
Log:
Creating release candidate rc2 from release_400 branch
Added:
libunwind/tags/RELEASE_400/rc2/ (props changed)
- copied from r294546, libunwind/branches/re
Author: hans
Date: Wed Feb 8 18:14:12 2017
New Revision: 294540
URL: http://llvm.org/viewvc/llvm-project?rev=294540&view=rev
Log:
Creating release candidate rc2 from release_400 branch
Added:
libcxx/tags/RELEASE_400/rc2/ (props changed)
- copied from r294539, libcxx/branches/release_
Author: hans
Date: Wed Feb 8 18:14:16 2017
New Revision: 294541
URL: http://llvm.org/viewvc/llvm-project?rev=294541&view=rev
Log:
Creating release candidate rc2 from release_400 branch
Added:
libcxxabi/tags/RELEASE_400/rc2/ (props changed)
- copied from r294540, libcxxabi/branches/re
Hello everyone,
Below are some buildbot numbers for the last week of 01/29/2017 -
02/04/2017.
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
efriedma added a comment.
It doesn't make sense to do this in WebAssembly-specific code; every POSIX
platform has a signgam which behaves the same way.
https://reviews.llvm.org/D29736
___
cfe-commits mailing list
cfe-commits@lists.llvm.org
http://l
Author: dyung
Date: Wed Feb 8 18:07:38 2017
New Revision: 294534
URL: http://llvm.org/viewvc/llvm-project?rev=294534&view=rev
Log:
Add check that "#define unix 1" is present for the PS4 target.
Modified:
cfe/trunk/test/Preprocessor/init.c
Modified: cfe/trunk/test/Preprocessor/init.c
URL:
lethalantidote created this revision.
Herald added a subscriber: JDevlieghere.
Adds the commandline need to run clang-tidy tests.
https://reviews.llvm.org/D29737
Files:
clang-tools-extra/docs/clang-tidy/index.rst
Index: clang-tools-extra/docs/clang-tidy/index.rst
===
lethalantidote added a comment.
Any updates on this?
https://reviews.llvm.org/D28543
___
cfe-commits mailing list
cfe-commits@lists.llvm.org
http://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits
jgravelle-google created this revision.
Herald added a subscriber: jfb.
Current WebAssembly implementations use musl libc, which writes to
signgam in its lgamma functions. We want the rest of the builtins to be
const under -fno-math-errno, so overwrite lgamma's builtin definitions
to be never-cons
rsmith added inline comments.
Comment at: include/clang/AST/DeclTemplate.h:373-391
+class TemplateDeclWithACBase {
+protected:
+ TemplateDeclWithACBase() = default;
+
+ ConstrainedTemplateDeclInfo CTDInfo;
+};
+
This mechanism seems unnecessary to me; allocatin
alexfh requested changes to this revision.
alexfh added inline comments.
This revision now requires changes to proceed.
Comment at: clang-tidy/readability/DeleteNullPointerCheck.cpp:46
+ DeleteExpr, DeleteMemberExpr,
+ compoundStmt(anyOf(has(Delete
hubert.reinterpretcast added a comment.
Ping 2?
https://reviews.llvm.org/D25674
___
cfe-commits mailing list
cfe-commits@lists.llvm.org
http://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits
> On Feb 8, 2017, at 2:31 PM, David Blaikie wrote:
>
>
>
> On Wed, Feb 8, 2017 at 2:25 PM Amjad Aboud via Phabricator
> mailto:revi...@reviews.llvm.org>> wrote:
> aaboud added a comment.
>
> > How much does the build directory grow?
> > Is there any noticeable compile time regression?
>
>
joerg accepted this revision.
joerg added a comment.
One small issue left, otherwise LGTM.
Comment at: include/__threading_support:187
+_LIBCPP_THREAD_ABI_VISIBILITY
+void __libcpp_thread_sleep_for(const chrono::nanoseconds& ns);
+
Drop the name here.
https:/
On Wed, Feb 8, 2017 at 2:25 PM Amjad Aboud via Phabricator <
revi...@reviews.llvm.org> wrote:
> aaboud added a comment.
>
> > How much does the build directory grow?
> > Is there any noticeable compile time regression?
>
> I build clang in release mode using GCC, then used that build to build
> c
aaboud added a comment.
> How much does the build directory grow?
> Is there any noticeable compile time regression?
I build clang in release mode using GCC, then used that build to build clang in
debug mode with "-fstandalone-debug" flag, one time with my changes and another
time without my c
tigerleapgorge updated this revision to Diff 87711.
tigerleapgorge edited the summary of this revision.
tigerleapgorge added a comment.
Remove 2 OpenMP tests reviewed via https://reviews.llvm.org/D29725
https://reviews.llvm.org/D21626
Files:
test/Modules/Inputs/merge-using-decls/a.h
test/Mo
Author: aizatsky
Date: Wed Feb 8 15:28:39 2017
New Revision: 294522
URL: http://llvm.org/viewvc/llvm-project?rev=294522&view=rev
Log:
[sancov] pc_guard_init is called at least once per DSO.
Summary: Documentation update for https://reviews.llvm.org/D29662
Differential Revision: https://reviews.
Author: dblaikie
Date: Wed Feb 8 14:51:11 2017
New Revision: 294512
URL: http://llvm.org/viewvc/llvm-project?rev=294512&view=rev
Log:
Initialize builtins during modular codegen
Added:
cfe/trunk/test/Modules/Inputs/codegen-opt/
cfe/trunk/test/Modules/Inputs/codegen-opt/bar.h
- copie
Author: rsmith
Date: Wed Feb 8 14:39:08 2017
New Revision: 294509
URL: http://llvm.org/viewvc/llvm-project?rev=294509&view=rev
Log:
More fixes for places where 'decltype(auto)' is permitted in the C++ grammar
but makes no sense.
Modified:
cfe/trunk/include/clang/Basic/DiagnosticSemaKinds.td
madsravn created this revision.
Made a small fix to readability-delete-null-pointer check such that it includes
class members.
https://reviews.llvm.org/D29726
Files:
clang-tidy/readability/DeleteNullPointerCheck.cpp
clang-tidy/readability/DeleteNullPointerCheck.h
test/clang-tidy/readabil
Author: rsmith
Date: Wed Feb 8 13:58:48 2017
New Revision: 294506
URL: http://llvm.org/viewvc/llvm-project?rev=294506&view=rev
Log:
Don't crash on 'decltype(auto)::'. Rather than treating it as a meaningless
nested-name-specifier (as the standard appears to require), treat it as the
type specifie
Author: lcharles
Date: Wed Feb 8 13:46:15 2017
New Revision: 294504
URL: http://llvm.org/viewvc/llvm-project?rev=294504&view=rev
Log:
[Lit Test] Make tests C++11 compatible - Parse OpenMP
Differential Revision: https://reviews.llvm.org/D29725
Modified:
cfe/trunk/test/OpenMP/declare_reductio
This revision was automatically updated to reflect the committed changes.
Closed by commit rL294504: [Lit Test] Make tests C++11 compatible - Parse
OpenMP (authored by lcharles).
Changed prior to commit:
https://reviews.llvm.org/D29725?vs=87684&id=87687#toc
Repository:
rL LLVM
https://revie
ABataev accepted this revision.
ABataev added a comment.
This revision is now accepted and ready to land.
LG
https://reviews.llvm.org/D29725
___
cfe-commits mailing list
cfe-commits@lists.llvm.org
http://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-c
Prazek added inline comments.
Comment at: clang-tidy/misc/ThrowWithNoexceptCheck.cpp:54
+// FIXME use DiagnosticIDs::Level::Note
+diag(NoExceptRange.getBegin(), "in a function declared no-throw here:",
DiagnosticIDs::Note)
+<< FixItHint::CreateRemoval(NoExceptRan
tigerleapgorge created this revision.
I am continuing to make out Lit tests C++11 compatible.
There are two tests in this patch.
Both tests verify parse errors with ill formed OpenMP expressions.
test/OpenMP/declare_reduction_messages.cpp
In C++11, an opening square bracket is the start of a l
idlecode created this revision.
In case user did not provide valid standard name for `-std` option,
available values (with short description) will be reported.
To test: `clang -std=iso3103 -c source.c`
https://reviews.llvm.org/D29724
Files:
include/clang/Basic/DiagnosticDriverKinds.td
lib/
Author: ericwf
Date: Wed Feb 8 13:04:18 2017
New Revision: 294501
URL: http://llvm.org/viewvc/llvm-project?rev=294501&view=rev
Log:
Update info for LWG 2665 in upcoming_meeting.html
Modified:
libcxx/trunk/www/upcoming_meeting.html
Modified: libcxx/trunk/www/upcoming_meeting.html
URL:
http:
vsk created this revision.
After r264564, we allowed direct-list-initialization of an enum from an
integral value in C++1z mode, so long as that value can convert to the
enum's underlying type.
In this kind of initialization, we need a lvalue-to-rvalue conversion
for the initializer value if it i
This revision was automatically updated to reflect the committed changes.
Closed by commit rL294491: [clang-tidy] Add -extra-arg and -extra-arg-before to
clang-tidy-diff.py (authored by ehsan).
Changed prior to commit:
https://reviews.llvm.org/D29699?vs=87576&id=87673#toc
Repository:
rL LLVM
Author: ehsan
Date: Wed Feb 8 11:50:24 2017
New Revision: 294491
URL: http://llvm.org/viewvc/llvm-project?rev=294491&view=rev
Log:
[clang-tidy] Add -extra-arg and -extra-arg-before to clang-tidy-diff.py
Summary:
These flags allow specifying extra arguments to the tool's command
line which don't
Author: hans
Date: Wed Feb 8 11:28:23 2017
New Revision: 294483
URL: http://llvm.org/viewvc/llvm-project?rev=294483&view=rev
Log:
Docs: drop minor version
Modified:
libcxx/branches/release_40/docs/conf.py
Modified: libcxx/branches/release_40/docs/conf.py
URL:
http://llvm.org/viewvc/llvm-pr
rmaprath added a comment.
In https://reviews.llvm.org/D29630#670876, @EricWF wrote:
> In https://reviews.llvm.org/D29630#670873, @rmaprath wrote:
>
> > Sorry for the delay, I've updated the patch with all the comments addressed.
> >
> > @EricWF: Got one question before I commit: The `sleep_for` f
EricWF added a comment.
In https://reviews.llvm.org/D29630#670873, @rmaprath wrote:
> Sorry for the delay, I've updated the patch with all the comments addressed.
>
> @EricWF: Got one question before I commit: The `sleep_for` function in the
> dylib (`thread.cpp`) is now quite small. Is there a
rmaprath updated this revision to Diff 87669.
rmaprath added a comment.
Sorry for the delay, I've updated the patch with all the comments addressed.
@EricWF: Got one question before I commit: The `sleep_for` function in the
dylib (`thread.cpp`) is now quite small. Is there a particular reason to
Author: rnk
Date: Wed Feb 8 10:09:32 2017
New Revision: 294465
URL: http://llvm.org/viewvc/llvm-project?rev=294465&view=rev
Log:
[MS] Fix C++ destructor thunk line info for a declaration
Sometimes the MS ABI needs to emit thunks for declarations that don't
have bodies. Destructor thunks make cal
Author: alexfh
Date: Wed Feb 8 10:11:22 2017
New Revision: 294467
URL: http://llvm.org/viewvc/llvm-project?rev=294467&view=rev
Log:
[clang-tidy] hasErrorOccurred() -> hasUncompilableErrorOccurred()
hasErrorOccurred() -> hasUncompilableErrorOccurred(), since we only care about
errors that lead to
ioeric added inline comments.
Comment at: lib/Tooling/RefactoringCallbacks.cpp:160
+llvm::Expected>
+ReplaceNodeWithTemplate::create(StringRef FromId, StringRef ToTemplate) {
+ std::vector ParsedTemplate;
Is this covered in the test?
Comment a
svenvh created this revision.
Expose the half type (fp16) through libclang and the python bindings.
It seems CXType_LastBuiltin was not updated in b2ea6d9 ("Enable
support for __float128 in Clang", 2016-04-13), so update it now.
Add an Index test for OpenCL types; in the future we will add other
This revision was automatically updated to reflect the committed changes.
Closed by commit rL294459: [clang-tidy] Supresses misc-move-constructor-init
warning for const fields. (authored by alexfh).
Changed prior to commit:
https://reviews.llvm.org/D28973?vs=87484&id=87655#toc
Repository:
rL
Author: alexfh
Date: Wed Feb 8 08:56:16 2017
New Revision: 294459
URL: http://llvm.org/viewvc/llvm-project?rev=294459&view=rev
Log:
[clang-tidy] Supresses misc-move-constructor-init warning for const fields.
Patch by CJ DiMeglio!
Differential revision: https://reviews.llvm.org/D28973
Modified:
This revision was automatically updated to reflect the committed changes.
Closed by commit rL294457: [clang-format] Move OriginalPrefix from base to
subclass. (authored by krasimir).
Changed prior to commit:
https://reviews.llvm.org/D29716?vs=87643&id=87653#toc
Repository:
rL LLVM
https://r
djasper accepted this revision.
djasper added a comment.
This revision is now accepted and ready to land.
lg
https://reviews.llvm.org/D29716
___
cfe-commits mailing list
cfe-commits@lists.llvm.org
http://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-c
Author: krasimir
Date: Wed Feb 8 08:45:19 2017
New Revision: 294457
URL: http://llvm.org/viewvc/llvm-project?rev=294457&view=rev
Log:
[clang-format] Move OriginalPrefix from base to subclass.
Summary:
OriginalPrefix is only needed for line comment sections. Moved from the base
class to the chil
alexfh accepted this revision.
alexfh added a comment.
This revision is now accepted and ready to land.
LG. I'll commit the patch for you.
https://reviews.llvm.org/D28973
___
cfe-commits mailing list
cfe-commits@lists.llvm.org
http://lists.llvm.org/
djasper accepted this revision.
djasper added a comment.
This revision is now accepted and ready to land.
lg
https://reviews.llvm.org/D29713
___
cfe-commits mailing list
cfe-commits@lists.llvm.org
http://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-c
This revision was automatically updated to reflect the committed changes.
Closed by commit rL294438: [test] #ifdef new builtin tests for __arm__ platform
(authored by mgorny).
Changed prior to commit:
https://reviews.llvm.org/D29708?vs=87617&id=87629#toc
Repository:
rL LLVM
https://reviews.
This revision was automatically updated to reflect the committed changes.
Closed by commit rL294435: [clang-format] Break before a sequence of line
comments aligned with the next… (authored by krasimir).
Changed prior to commit:
https://reviews.llvm.org/D29626?vs=87615&id=87622#toc
Repository:
Author: krasimir
Date: Wed Feb 8 04:30:44 2017
New Revision: 294435
URL: http://llvm.org/viewvc/llvm-project?rev=294435&view=rev
Log:
[clang-format] Break before a sequence of line comments aligned with the next
line.
Summary:
Make the comment alignment respect sections of line comments origina
malcolm.parsons added inline comments.
Comment at: clang-tidy/modernize/UseConstInsteadOfDefineCheck.cpp:20
+namespace {
+class MacroParenthesesPPCallbacks : public PPCallbacks {
+public:
s/MacroParentheses/ConstantValues/ ?
Comment at: docs/cl
klimek accepted this revision.
klimek added a comment.
This revision is now accepted and ready to land.
lg.
I'd probably still call it consumeComments or something, as we require a flush
afterwards for the unconsumed comments, but I don't feel too strongly about
that.
https://reviews.llvm.org
This revision was automatically updated to reflect the committed changes.
Closed by commit rL294431: [test] Fix hard_link_count test to account for fs
with dir nlink==1 (authored by mgorny).
Changed prior to commit:
https://reviews.llvm.org/D29706?vs=87613&id=87618#toc
Repository:
rL LLVM
h
Author: mgorny
Date: Wed Feb 8 03:57:32 2017
New Revision: 294431
URL: http://llvm.org/viewvc/llvm-project?rev=294431&view=rev
Log:
[test] Fix hard_link_count test to account for fs with dir nlink==1
Filesystems are not required to maintain a hard link count consistent
with number of subdirector
mgorny created this revision.
Herald added subscribers: dberris, aemerson.
Add an #if that excludes the newly added aeabi* tests on non-ARM
platforms. This is consistent with other ARM tests, and aims to make
running builtin tests easier. Lacking a proper infrastructure to run
tests selectively, i
krasimir added inline comments.
Comment at: lib/Format/UnwrappedLineParser.h:121-123
+ // Comments specifies the sequence of comment tokens to analyze. They get
+ // either pushed to the current line or added to the comments before the next
+ // token.
klimek
krasimir updated this revision to Diff 87615.
krasimir marked an inline comment as done.
krasimir added a comment.
- Updated call sites.
https://reviews.llvm.org/D29626
Files:
lib/Format/UnwrappedLineParser.cpp
lib/Format/UnwrappedLineParser.h
unittests/Format/FormatTest.cpp
Index: unitt
krasimir updated this revision to Diff 87614.
krasimir added a comment.
- Invent better name for comment analysis.
https://reviews.llvm.org/D29626
Files:
lib/Format/UnwrappedLineParser.cpp
lib/Format/UnwrappedLineParser.h
unittests/Format/FormatTest.cpp
Index: unittests/Format/FormatTest
Ilod created this revision.
Clang emits a warning when using pure specifier =0 in function definition at
class scope, which is a MS-specific construct, when using -fms-extensions.
However, to detect this, it was using FD->isCanonicalDecl() on function
declaration, which was also detecting out-of
klimek added inline comments.
Comment at: lib/Format/UnwrappedLineParser.h:121-123
+ // Comments specifies the sequence of comment tokens to analyze. They get
+ // either pushed to the current line or added to the comments before the next
+ // token.
krasimir
mgorny created this revision.
Filesystems are not required to maintain a hard link count consistent
with number of subdirectories. For example, on btrfs all directories
have nlink==1. Account for that in the test.
Repository:
rL LLVM
https://reviews.llvm.org/D29706
Files:
test/std/experim
krasimir added inline comments.
Comment at: lib/Format/UnwrappedLineParser.h:121-123
+ // Comments specifies the sequence of comment tokens to analyze. They get
+ // either pushed to the current line or added to the comments before the next
+ // token.
klimek
mehdi_amini added a comment.
Ping? This is hitting 4.0
https://reviews.llvm.org/D29469
___
cfe-commits mailing list
cfe-commits@lists.llvm.org
http://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits
klimek accepted this revision.
klimek added a comment.
This revision is now accepted and ready to land.
lg
https://reviews.llvm.org/D29699
___
cfe-commits mailing list
cfe-commits@lists.llvm.org
http://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-com
klimek added inline comments.
Comment at: lib/Format/UnwrappedLineParser.h:121-123
+ // Comments specifies the sequence of comment tokens to analyze. They get
+ // either pushed to the current line or added to the comments before the next
+ // token.
krasimir
This revision was automatically updated to reflect the committed changes.
Closed by commit rL294425: [test] Enable the strace_test only if strace is
installed (authored by mgorny).
Changed prior to commit:
https://reviews.llvm.org/D29628?vs=87392&id=87603#toc
Repository:
rL LLVM
https://rev
varjujan added a comment.
@xazax.hun
Yes I do. Obviously some of them seem to be better than the others so I can
remove a couple if needed.
https://reviews.llvm.org/D20689
___
cfe-commits mailing list
cfe-commits@lists.llvm.org
http://lists.llvm.or
Author: ctopper
Date: Wed Feb 8 02:23:40 2017
New Revision: 294424
URL: http://llvm.org/viewvc/llvm-project?rev=294424&view=rev
Log:
[X86] Add -mprefetchwt1/-mno-prefetchwt1 command line options and
__PREFETCHWT1__ define to match gcc.
Modified:
cfe/trunk/docs/ClangCommandLineReference.rst
Author: ctopper
Date: Wed Feb 8 02:23:17 2017
New Revision: 294423
URL: http://llvm.org/viewvc/llvm-project?rev=294423&view=rev
Log:
[X86] Add -msgx/-mno-sgx command line options and __SGX__ define to match gcc.
Modified:
cfe/trunk/docs/ClangCommandLineReference.rst
cfe/trunk/include/cla
Hahnfeld added a comment.
gentle ping
https://reviews.llvm.org/D26244
___
cfe-commits mailing list
cfe-commits@lists.llvm.org
http://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits
Author: ctopper
Date: Wed Feb 8 01:57:01 2017
New Revision: 294420
URL: http://llvm.org/viewvc/llvm-project?rev=294420&view=rev
Log:
[X86] Update command line documentation for -mclwb and -mmovbe which I forgot
in my previous commits.
Modified:
cfe/trunk/docs/ClangCommandLineReference.rst
krasimir marked an inline comment as done.
krasimir added inline comments.
Comment at: lib/Format/UnwrappedLineParser.h:121-123
+ // Comments specifies the sequence of comment tokens to analyze. They get
+ // either pushed to the current line or added to the comments before the
Author: ctopper
Date: Wed Feb 8 01:56:42 2017
New Revision: 294419
URL: http://llvm.org/viewvc/llvm-project?rev=294419&view=rev
Log:
[X86] Add -mmpx/-mno-mpx command line options and __MPX__ define to match gcc.
Modified:
cfe/trunk/docs/ClangCommandLineReference.rst
cfe/trunk/include/cla
89 matches
Mail list logo