pboettch updated this revision to Diff 85708.
pboettch added a comment.
Added test-code.
https://reviews.llvm.org/D29117
Files:
lib/Basic/Targets.cpp
test/CodeGen/sparcv8-inline-asm.c
Index: test/CodeGen/sparcv8-inline-asm.c
===
slthakur accepted this revision.
slthakur added a comment.
LGTM
Repository:
rL LLVM
https://reviews.llvm.org/D29031
___
cfe-commits mailing list
cfe-commits@lists.llvm.org
http://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits
nlopes added a comment.
Regarding incremental solving with Z3 (or with most SMT solvers in general),
let me just lower the expectations a bit:
In Z3, when you do push(), there are a few things that change immediately: 1)
it uses a different SAT solver (one that supports incremental reasoning), a
Author: dergachev
Date: Wed Jan 25 04:21:45 2017
New Revision: 293043
URL: http://llvm.org/viewvc/llvm-project?rev=293043&view=rev
Log:
[analyzer] Fix MacOSXAPIChecker fp with static locals seen from nested blocks.
This is an attempt to avoid new false positives caused by the reverted r292800,
ho
This revision was automatically updated to reflect the committed changes.
Closed by commit rL293043: [analyzer] Fix MacOSXAPIChecker fp with static
locals seen from nested blocks. (authored by dergachev).
Changed prior to commit:
https://reviews.llvm.org/D28946?vs=85588&id=85722#toc
Repository
krasimir updated this revision to Diff 85725.
krasimir marked 8 inline comments as done.
krasimir added a comment.
- Address review comments.
https://reviews.llvm.org/D28764
Files:
lib/Format/BreakableToken.cpp
lib/Format/BreakableToken.h
lib/Format/CMakeLists.txt
lib/Format/Comments.cp
krasimir added inline comments.
Comment at: lib/Format/ContinuationIndenter.cpp:1158-1159
+CommentPragmasRegex.match(Current.TokenText.substr(2)) ||
+Current.TokenText.substr(2).ltrim().startswith("clang-format on") ||
+Current.TokenText.substr(2).ltrim().
klimek added inline comments.
Comment at: lib/Format/BreakableToken.cpp:279-280
+ return Content.size() >= 2 &&
+ Content != "clang-format on" &&
+ Content != "clang-format off" &&
+ !Content.endswith("\\") &&
Can we now use delimitsRegion here?
Author: arpith
Date: Wed Jan 25 05:28:18 2017
New Revision: 293048
URL: http://llvm.org/viewvc/llvm-project?rev=293048&view=rev
Log:
[OpenMP] Support for num_teams-clause on the 'target teams' directive.
The num_teams-clause on the combined directive applies to the
'teams' region of this construc
This revision was automatically updated to reflect the committed changes.
Closed by commit rL293048: [OpenMP] Support for num_teams-clause on the 'target
teams' directive. (authored by arpith).
Changed prior to commit:
https://reviews.llvm.org/D29085?vs=85587&id=85726#toc
Repository:
rL LLVM
Author: arpith
Date: Wed Jan 25 05:44:35 2017
New Revision: 293049
URL: http://llvm.org/viewvc/llvm-project?rev=293049&view=rev
Log:
[OpenMP] Support for thread_limit-clause on the 'target teams' directive.
The thread_limit-clause on the combined directive applies to the
'teams' region of this co
This revision was automatically updated to reflect the committed changes.
Closed by commit rL293049: [OpenMP] Support for thread_limit-clause on the
'target teams' directive. (authored by arpith).
Changed prior to commit:
https://reviews.llvm.org/D29087?vs=85592&id=85728#toc
Repository:
rL L
Author: stulova
Date: Wed Jan 25 06:18:50 2017
New Revision: 293050
URL: http://llvm.org/viewvc/llvm-project?rev=293050&view=rev
Log:
[OpenCL] Diagnose write_only image3d when extension is disabled
Prior to OpenCL 2.0, image3d_t can only be used with the write_only
access qualifier when the cl_kh
Anastasia closed this revision.
Anastasia added a comment.
Committed in r293050!
https://reviews.llvm.org/D28860
___
cfe-commits mailing list
cfe-commits@lists.llvm.org
http://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits
mboehme created this revision.
This enables the test to run on systems where output cannot be written.
https://reviews.llvm.org/D29123
Files:
test/Driver/no-arc-exception-silence.m
Index: test/Driver/no-arc-exception-silence.m
Author: mboehme
Date: Wed Jan 25 06:55:53 2017
New Revision: 293051
URL: http://llvm.org/viewvc/llvm-project?rev=293051&view=rev
Log:
[Driver] Prevent no-arc-exception-silence.m test from writing output.
Summary: This enables the test to run on systems where output cannot be written.
Reviewers:
This revision was automatically updated to reflect the committed changes.
Closed by commit rL293051: [Driver] Prevent no-arc-exception-silence.m test
from writing output. (authored by mboehme).
Changed prior to commit:
https://reviews.llvm.org/D29123?vs=85734&id=85735#toc
Repository:
rL LLVM
Author: mgorny
Date: Wed Jan 25 07:11:45 2017
New Revision: 293052
URL: http://llvm.org/viewvc/llvm-project?rev=293052&view=rev
Log:
[test] Port clang tests to canonicalized booleans
Use the new llvm_canonicalize_cmake_booleans() function to canonicalize
booleans for lit tests. Replace the duplic
This revision was automatically updated to reflect the committed changes.
Closed by commit rL293052: [test] Port clang tests to canonicalized booleans
(authored by mgorny).
Changed prior to commit:
https://reviews.llvm.org/D28529?vs=83852&id=85736#toc
Repository:
rL LLVM
https://reviews.llv
krasimir updated this revision to Diff 85737.
krasimir marked 3 inline comments as done.
krasimir added a comment.
- Address comments. Add a bunch of comments about various range computations.
https://reviews.llvm.org/D28764
Files:
lib/Format/BreakableToken.cpp
lib/Format/BreakableToken.h
krasimir added a comment.
Tried to add some comments around range computations. Most of the time it's
about converting range offsets from local line-based values to
start-of-token-based offsets.
Comment at: lib/Format/BreakableToken.cpp:279-280
+ return Content.size() >= 2 &
Author: mgorny
Date: Wed Jan 25 07:31:53 2017
New Revision: 293053
URL: http://llvm.org/viewvc/llvm-project?rev=293053&view=rev
Log:
[test] Add HAVE_LIBZ to canonicalized booleans
Canonicalize HAVE_LIBZ as well to fix buildbot failures.
Modified:
cfe/trunk/test/CMakeLists.txt
Modified: cfe/
klimek added inline comments.
Comment at: lib/Format/BreakableToken.cpp:747
+Split SplitBefore, WhitespaceManager &Whitespaces) {
+ // If this is the first line of a token, we need to inform Whitespace Manager
+ // about it: either adapt the whitespace range preceding it, o
krasimir added inline comments.
Comment at: lib/Format/BreakableToken.cpp:747
+Split SplitBefore, WhitespaceManager &Whitespaces) {
+ // If this is the first line of a token, we need to inform Whitespace Manager
+ // about it: either adapt the whitespace range preceding it,
krasimir updated this revision to Diff 85739.
krasimir marked 2 inline comments as done.
krasimir added a comment.
- Address review comments.
https://reviews.llvm.org/D28764
Files:
lib/Format/BreakableToken.cpp
lib/Format/BreakableToken.h
lib/Format/CMakeLists.txt
lib/Format/Comments.cp
klimek accepted this revision.
klimek added a comment.
This revision is now accepted and ready to land.
LG
https://reviews.llvm.org/D28764
___
cfe-commits mailing list
cfe-commits@lists.llvm.org
http://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-com
Author: krasimir
Date: Wed Jan 25 07:58:58 2017
New Revision: 293055
URL: http://llvm.org/viewvc/llvm-project?rev=293055&view=rev
Log:
[clang-format] Implement comment reflowing.
Summary:
This presents a version of the comment reflowing with less mutable state inside
the comment breakable token s
This revision was automatically updated to reflect the committed changes.
Closed by commit rL293055: [clang-format] Implement comment reflowing.
(authored by krasimir).
Changed prior to commit:
https://reviews.llvm.org/D28764?vs=85739&id=85740#toc
Repository:
rL LLVM
https://reviews.llvm.or
delesley added a comment.
The big question for me is whether these functions are exposed as part of the
public libcxx API, or whether they are only used internally. (Again, I'm not a
libcxx expert.) If they are part of the public API, then users may want to
switch them on and off in their own
hubert.reinterpretcast updated this revision to Diff 85752.
hubert.reinterpretcast added a comment.
Address review comments; update to revision 292996
Fix possibly ill-formed NDR case
Test template-dependent cases for class redeclaration
Address review comment: use lambda instead of do while(0)
hubert.reinterpretcast marked 3 inline comments as done.
hubert.reinterpretcast added inline comments.
Comment at: include/clang/AST/DeclTemplate.h:355
protected:
- // This is probably never used.
- TemplateDecl(Kind DK, DeclContext *DC, SourceLocation L, DeclarationName
Name
Anastasia updated this revision to Diff 85753.
Anastasia added a comment.
Switched to getNullPointer helper.
https://reviews.llvm.org/D28814
Files:
lib/AST/Expr.cpp
lib/CodeGen/CGBlocks.cpp
lib/CodeGen/CGBuiltin.cpp
lib/Sema/SemaExpr.cpp
lib/Sema/SemaType.cpp
test/CodeGenOpenCL/cl20
Anastasia added inline comments.
Comment at: lib/CodeGen/CGBlocks.cpp:723
+? CGM.getNSConcreteStackBlock()
+: llvm::Constant::getNullValue(
+ CGM.getNSConcreteStackBlock()->getType());
--
yaxunl added inline comments.
Comment at: lib/CodeGen/CGBlocks.cpp:726
+ CGM.getNSConcreteStackBlock()->getType()),
+ QualType());
isa = llvm::ConstantExpr::getBitCast(isa, VoidPtrTy);
The QualTyp
m.ostapenko updated this revision to Diff 85756.
m.ostapenko added a comment.
Add a test case.
Repository:
rL LLVM
https://reviews.llvm.org/D29077
Files:
lib/Driver/ToolChains.cpp
test/Driver/fsanitize.c
Index: test/Driver/fsanitize.c
===
yaxunl added inline comments.
Comment at: lib/CodeGen/CGBlocks.cpp:723
+? CGM.getNSConcreteStackBlock()
+: llvm::Constant::getNullValue(
+ CGM.getNSConcreteStackBlock()->getType());
-
Author: nico
Date: Wed Jan 25 10:01:32 2017
New Revision: 293065
URL: http://llvm.org/viewvc/llvm-project?rev=293065&view=rev
Log:
Clarify how to forward-declare __llvm_profile symbols.
Modified:
cfe/trunk/docs/SourceBasedCodeCoverage.rst
Modified: cfe/trunk/docs/SourceBasedCodeCoverage.rst
arpith-jacob created this revision.
Herald added a subscriber: jholewinski.
This patch adds support for the proc_bind clause on the Spmd construct
'target parallel' on the NVPTX device. Since the parallel region is created
upon kernel launch, this clause can be safely ignored on the NVPTX device
ABataev accepted this revision.
ABataev added a comment.
This revision is now accepted and ready to land.
LG
https://reviews.llvm.org/D29128
___
cfe-commits mailing list
cfe-commits@lists.llvm.org
http://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-c
Author: arpith
Date: Wed Jan 25 10:55:10 2017
New Revision: 293069
URL: http://llvm.org/viewvc/llvm-project?rev=293069&view=rev
Log:
[OpenMP] Support for the proc_bind-clause on 'target parallel' on the NVPTX
device.
This patch adds support for the proc_bind clause on the Spmd construct
'target
This revision was automatically updated to reflect the committed changes.
Closed by commit rL293069: [OpenMP] Support for the proc_bind-clause on 'target
parallel' on the NVPTX… (authored by arpith).
Changed prior to commit:
https://reviews.llvm.org/D29128?vs=85759&id=85765#toc
Repository:
r
Author: mehdi_amini
Date: Wed Jan 25 11:00:30 2017
New Revision: 293071
URL: http://llvm.org/viewvc/llvm-project?rev=293071&view=rev
Log:
[libcxx] Mentions "targeting C++11 and above" instead of "targeting C++11" in
the doc
Modified:
libcxx/trunk/docs/index.rst
Modified: libcxx/trunk/docs/i
Should we merge this to 4.0?
On Tue, Jan 24, 2017 at 3:09 PM, Marshall Clow via cfe-commits
wrote:
> Author: marshall
> Date: Tue Jan 24 17:09:12 2017
> New Revision: 292990
>
> URL: http://llvm.org/viewvc/llvm-project?rev=292990&view=rev
> Log:
> Change the return type of emplace_[front|back] ba
Thanks! r293072.
On Tue, Jan 24, 2017 at 6:03 PM, Richard Smith wrote:
> Hi Hans,
>
> This is relatively minor, but it's safe and fixes a rejects-valid regression
> in some configurations. Might be worth taking for Clang 4.
>
> On 24 January 2017 at 15:18, Richard Smith via cfe-commits
> wrote:
This breaks all our mac builds with:
/b/c/b/ClangToTMac__dbg_/src/third_party/llvm-build/Release+Asserts/bin/../include/c++/v1/__threading_support:154:1:
error: unknown type name 'mach_port_t'
mach_port_t __libcpp_thread_get_port();
On Tue, Jan 3, 2017 at 7:59 AM, Asiri Rathnayake via cfe-commits
Is it intentional that this change affects
non-LIBCXX_HAS_EXTERNAL_THREAD_API builds at all?
On Wed, Jan 25, 2017 at 12:31 PM, Nico Weber wrote:
> This breaks all our mac builds with:
>
> /b/c/b/ClangToTMac__dbg_/src/third_party/llvm-build/
> Release+Asserts/bin/../include/c++/v1/__threading_sup
(including cfe-commits)
On Wed, Jan 25, 2017 at 5:51 PM, Asiri Rathnayake <
asiri.rathnay...@gmail.com> wrote:
> Hi Nico,
>
> On Wed, Jan 25, 2017 at 5:32 PM, Nico Weber via cfe-commits <
> cfe-commits@lists.llvm.org> wrote:
>
>> Is it intentional that this change affects non-LIBCXX_HAS_EXTERNAL_
ahatanak updated this revision to Diff 85774.
ahatanak marked 2 inline comments as done.
ahatanak added a comment.
Yes, we can make VarBypassDetector detect variables declared after labels too
if we want to put all the logic for disabling lifetime markers in one place.
https://reviews.llvm.org/
STL_MSFT created this revision.
[libcxx] [test] Fix Clang -Wunused-local-typedef, part 1/3.
Mark typedefs as LIBCPP_ONLY when their only usage is within
LIBCPP_STATIC_ASSERT.
test/std/containers/sequences/vector.bool/move_assign_noexcept.pass.cpp
test/std/containers/sequences/vector.bool/move_n
rjmccall added a comment.
In https://reviews.llvm.org/D27680#656453, @ahatanak wrote:
> Yes, we can make VarBypassDetector detect variables declared after labels too
> if we want to put all the logic for disabling lifetime markers in one place.
Okay. If that's straightforward, that does seem
STL_MSFT created this revision.
[libcxx] [test] Fix Clang -Wunused-local-typedef, part 2/3.
These typedefs were completely unused.
https://reviews.llvm.org/D29136
Files:
test/std/containers/sequences/deque/deque.cons/size.pass.cpp
test/std/containers/sequences/list/list.cons/size_type.pass
STL_MSFT created this revision.
[libcxx] [test] Fix Clang -Wunused-local-typedef, part 3/3.
test/std/strings/string.classes/typedefs.pass.cpp
Actually test what basic_string's typedefs stand for.
test/std/utilities/meta/meta.trans/meta.trans.other/result_of11.pass.cpp
NotDerived and ND were comp
STL_MSFT created this revision.
[libcxx] [test] Fix Clang -Wdeprecated-declarations with MSVC's CRT.
libcxx's tests use various C Standard Library functions that have been
marked by MSVC's CRT as deprecated by Microsoft (not by ISO).
libcxx's usage is cromulent (just checking with decltype to se
STL_MSFT created this revision.
[libcxx] [test] Fix Clang -Wpessimizing-move "moving a temporary object
prevents copy elision".
N4618 30.6.6 [futures.unique_future]/12 declares "shared_future share()
noexcept;".
https://reviews.llvm.org/D29139
Files:
test/std/thread/futures/futures.unique_
STL_MSFT created this revision.
[libcxx] [test] Avoid MSVC's non-Standard ABI in underlying_type.pass.cpp.
When compiled with Clang for Windows, this was emitting "enumerator value
evaluates to 4294967295, which cannot be narrowed to type 'int'
[-Wc++11-narrowing]".
The test should more strenuo
@Nico: could you let me know your build configuration? (cmake options)
I'm surprised this went unnoticed for so long.
Thanks.
/ Asiri
On 25 Jan 2017 5:52 p.m., "Asiri Rathnayake"
wrote:
> (including cfe-commits)
>
> On Wed, Jan 25, 2017 at 5:51 PM, Asiri Rathnayake <
> asiri.rathnay...@gmail.
Sure!
https://build.chromium.org/p/chromium.fyi/builders/ClangToTMacASan/builds/8565/steps/gclient%20runhooks/logs/stdio
has the invocations to build llvm/clang/compiler/rt, and
https://build.chromium.org/p/chromium.fyi/builders/ClangToTMacASan/builds/8565/steps/compile/logs/stdio
is the actual bui
Author: marshall
Date: Wed Jan 25 14:14:03 2017
New Revision: 293079
URL: http://llvm.org/viewvc/llvm-project?rev=293079&view=rev
Log:
Fixed a typo in the synopsis (noecept -> noexcept). Thanks to Kim for the catch
Modified:
libcxx/trunk/include/future
Modified: libcxx/trunk/include/future
U
Hi Nico,
Thanks for the links. I may have a clue to what is going on.
I think in your Mac environment, does not provide
either pthread_mach_thread_np() function or define the type mach_port_t (is
there a way for you to check this btw? just to make sure).
This was not a problem before (for your
arpith-jacob created this revision.
Herald added a subscriber: jholewinski.
This is a simple patch to teach OpenMP codegen to emit the construct
in Generic mode.
https://reviews.llvm.org/D29143
Files:
lib/CodeGen/CGOpenMPRuntimeNVPTX.cpp
test/OpenMP/nvptx_target_teams_codegen.cpp
Index: te
dim added a comment.
In https://reviews.llvm.org/D28520#656202, @delesley wrote:
> The big question for me is whether these functions are exposed as part of the
> public libcxx API, or whether they are only used internally.
As far as I can see, they are only used internally, in `src/algorithm.
dim updated this revision to Diff 85794.
dim added a comment.
Back to the previous version, using `no_thread_safety_analysis` for FreeBSD
only. Optionally, we could delete the `defined(__FreeBSD__)` part, and disable
the analysis for all platforms.
https://reviews.llvm.org/D28520
Files:
in
Author: jlebar
Date: Wed Jan 25 15:29:48 2017
New Revision: 293097
URL: http://llvm.org/viewvc/llvm-project?rev=293097&view=rev
Log:
[CodeGen] [CUDA] Add the ability set default attrs on functions in linked
modules.
Summary:
Now when you ask clang to link in a bitcode module, you can tell it to
rtrieu added a comment.
In https://reviews.llvm.org/D21675#654659, @teemperor wrote:
> I feel like we have a really similar use case in the
> Analysis/CloneDetection{.h/.cpp} with the hashing of statements. I tried
> substituting the call to the statement hashing with a call to the
> CloneDete
rsmith added a comment.
In https://reviews.llvm.org/D21675#654659, @teemperor wrote:
> Would be nice if we could make Stmt::Profile, ODRHash and the CloneDetection
> use the same backend.
This code is *already* reusing the Stmt::Profile code for hashing of
statements. Why was a different mech
smeenai updated this revision to Diff 85816.
smeenai edited the summary of this revision.
smeenai removed a reviewer: compnerd.
smeenai added a comment.
Folding https://reviews.llvm.org/D27430 and addressing comments from that diff.
https://reviews.llvm.org/D25208
Files:
docs/DesignDocs/Visib
Author: ahatanak
Date: Wed Jan 25 16:55:13 2017
New Revision: 293106
URL: http://llvm.org/viewvc/llvm-project?rev=293106&view=rev
Log:
[CodeGen] Suppress emission of lifetime markers if a label has been seen
in the current lexical scope.
clang currently emits the lifetime.start marker of a variab
This revision was automatically updated to reflect the committed changes.
Closed by commit rL293106: [CodeGen] Suppress emission of lifetime markers if a
label has been seen (authored by ahatanak).
Changed prior to commit:
https://reviews.llvm.org/D27680?vs=85774&id=85817#toc
Repository:
rL
smeenai abandoned this revision.
smeenai added a comment.
Folded into https://reviews.llvm.org/D25208
https://reviews.llvm.org/D27430
___
cfe-commits mailing list
cfe-commits@lists.llvm.org
http://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits
hans created this revision.
For non-template `dllimport` functions, MSVC allows providing an inline
definition without spelling out the attribute again. In the example below, `f`
remains a `dllimport` function.
__declspec(dllimport) int f();
inline int f() { return 42; }
int useit() {
hans added a reviewer: rsmith.
hans added a comment.
+Richard in case you have any theories on why they do it like this.
https://reviews.llvm.org/D29152
___
cfe-commits mailing list
cfe-commits@lists.llvm.org
http://lists.llvm.org/cgi-bin/mailman/li
Author: ahatanak
Date: Wed Jan 25 17:16:32 2017
New Revision: 293108
URL: http://llvm.org/viewvc/llvm-project?rev=293108&view=rev
Log:
Remove the return type from the check string in test case.
Bots were failing because some targets emit signext before i32.
Modified:
cfe/trunk/test/CodeGen/l
Eugene.Zelenko added a comment.
General question: isn't Static Analyzer is better place for such workflow
checks?
Repository:
rL LLVM
https://reviews.llvm.org/D29151
___
cfe-commits mailing list
cfe-commits@lists.llvm.org
http://lists.llvm.org/c
Prazek added inline comments.
Comment at: clang-tidy/misc/InvalidatedIteratorsCheck.cpp:61
+ cxxMemberCallExpr(has(memberExpr(hasDeclaration(cxxMethodDecl(hasAnyName(
+ "push_back", "emplace_back",
"clear",
+
Author: ahatanak
Date: Wed Jan 25 17:36:15 2017
New Revision: 293111
URL: http://llvm.org/viewvc/llvm-project?rev=293111&view=rev
Log:
Fix test case committed in r293106 so that it passes on targets whose
pointers are 4-bytes instead of 8-bytes.
Modified:
cfe/trunk/test/CodeGen/lifetime2.c
M
smeenai created this revision.
When building libc++ with hidden visibility, we want explicit template
instantiations to export members. This is consistent with existing
Windows behavior, and is necessary for clients to be able to link
against a hidden visibility built libc++ without running into l
Author: rsmith
Date: Wed Jan 25 19:01:01 2017
New Revision: 293123
URL: http://llvm.org/viewvc/llvm-project?rev=293123&view=rev
Log:
Remove and replace DiagStatePoint tracking and lookup data structure.
Rather than storing a single flat list of SourceLocations where the diagnostic
state changes (
arsenm created this revision.
Herald added a reviewer: tstellarAMD.
Herald added subscribers: tony-tye, nhaehnle, wdng, kzhuravl.
Make sure the spec required type alignments are used in preparation
for a possible change which may break this.
https://reviews.llvm.org/D29162
Files:
test/CodeGen
Author: akirtzidis
Date: Wed Jan 25 20:11:50 2017
New Revision: 293134
URL: http://llvm.org/viewvc/llvm-project?rev=293134&view=rev
Log:
[index] When indexing an ObjC method declaration use its base name for the
location.
Instead of using the location of the beginning '-'/'+'.
This is consistent
Hi Hans,
Could this go into the stable branch ?
> On Jan 25, 2017, at 6:11 PM, Argyrios Kyrtzidis via cfe-commits
> wrote:
>
> Author: akirtzidis
> Date: Wed Jan 25 20:11:50 2017
> New Revision: 293134
>
> URL: http://llvm.org/viewvc/llvm-project?rev=293134&view=rev
> Log:
> [index] When inde
Author: anemet
Date: Wed Jan 25 22:07:11 2017
New Revision: 293146
URL: http://llvm.org/viewvc/llvm-project?rev=293146&view=rev
Log:
Support MIR opt-remarks with -fsave-optimization-record
The handler that deals with IR passed/missed/analysis remarks is extended to
also handle the corresponding M
Author: anemet
Date: Wed Jan 25 22:14:04 2017
New Revision: 293147
URL: http://llvm.org/viewvc/llvm-project?rev=293147&view=rev
Log:
Fix test from r293146
Modified:
cfe/trunk/test/CodeGen/opt-record-MIR.c
Modified: cfe/trunk/test/CodeGen/opt-record-MIR.c
URL:
http://llvm.org/viewvc/llvm-pro
Author: anemet
Date: Wed Jan 25 22:34:07 2017
New Revision: 293149
URL: http://llvm.org/viewvc/llvm-project?rev=293149&view=rev
Log:
Further fixes to test from r293146
Require aarch64 and avoid filename in YAML since it may require quotation.
Modified:
cfe/trunk/test/CodeGen/opt-record-MIR.c
Author: marshall
Date: Thu Jan 26 00:58:29 2017
New Revision: 293154
URL: http://llvm.org/viewvc/llvm-project?rev=293154&view=rev
Log:
Use the new __has_feature(cxx_constexpr_string_builtins) for detection of the
C-string intrinsics for constexpr support in std::char_traits. Thanks to
Richard fo
84 matches
Mail list logo