Author: dexonsmith
Date: Fri Mar 31 22:20:48 2017
New Revision: 299290
URL: http://llvm.org/viewvc/llvm-project?rev=299290&view=rev
Log:
string: Remove always_inline from basic_string::__init
This is effectively a partial revert of r278356, which started inlining
basic_string::__init. Even if we
dexonsmith closed this revision.
dexonsmith added a comment.
Committed in r299290.
https://reviews.llvm.org/D31564
___
cfe-commits mailing list
cfe-commits@lists.llvm.org
http://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits
EricWF updated this revision to Diff 93739.
EricWF added a comment.
- Remove incorrectly added changes.
Note that this patch is built on top of https://reviews.llvm.org/D31487 and not
trunk.
https://reviews.llvm.org/D31562
Files:
include/clang/Basic/DiagnosticSemaKinds.td
lib/Sema/SemaCor
dexonsmith created this revision.
Herald added subscribers: rengolin, aemerson.
This is effectively a partial revert of r278356, which started inlining
basic_string::__init. Even if we want to help the compiler along with
an inlinehint, we shouldn't hamstring it by forcing it to inline all the
ti
EricWF updated this revision to Diff 93737.
EricWF added a comment.
- general cleanup.
https://reviews.llvm.org/D31562
Files:
include/clang/Basic/DiagnosticSemaKinds.td
lib/Sema/SemaCoroutine.cpp
test/SemaCXX/coroutines.cpp
Index: test/SemaCXX/coroutines.cpp
=
dexonsmith created this revision.
For std::isinf, the standard requires effectively calling isinf as
double from Libc for integral types. But integral types are never
infinite; we don't need to call Libc to return false.
Also short-circuit other functions where Libc won't have interestin
Author: gornishanov
Date: Fri Mar 31 19:22:47 2017
New Revision: 299281
URL: http://llvm.org/viewvc/llvm-project?rev=299281&view=rev
Log:
[coroutines] Add cleanup for compiler injected objects/allocations in coroutine
body
Summary:
* Use pushCleanup to emit freeing coroutine memory on normal and
This revision was automatically updated to reflect the committed changes.
Closed by commit rL299281: [coroutines] Add cleanup for compiler injected
objects/allocations in coroutine… (authored by GorNishanov).
Changed prior to commit:
https://reviews.llvm.org/D31460?vs=93370&id=93728#toc
Reposi
spyffe updated this revision to Diff 93721.
spyffe added a comment.
• Removed namespace qualification of `cast` across the board.
• Standardized on `SmallVector`
• Factored out the filtering of forward declarations
• Fixed a loop as requested.
• Made a Origin<> wrapper for arbitrary AST objects th
This revision was automatically updated to reflect the committed changes.
Closed by commit rL299274: [ThinLTO] Handle -emit-llvm* in ThinLTO backends
(authored by tejohnson).
Changed prior to commit:
https://reviews.llvm.org/D31534?vs=93695&id=93722#toc
Repository:
rL LLVM
https://reviews.l
Author: tejohnson
Date: Fri Mar 31 17:35:47 2017
New Revision: 299274
URL: http://llvm.org/viewvc/llvm-project?rev=299274&view=rev
Log:
[ThinLTO] Handle -emit-llvm* in ThinLTO backends
Summary:
Use PreCodeGenModuleHook to invoke the correct writer when emitting LLVM
IR, returning false to skip co
On Fri, Mar 31, 2017 at 4:17 PM, Duncan P. N. Exon Smith <
dexonsm...@apple.com> wrote:
> Thanks. Unfortunately that's one of the ways we figured it out :(.
>
> The status quo, before this commit, was an ABI difference between
> Objective-C++ (-fobjc-arc) and C++/Objective-C++ (-fno-objc-arc), wh
Author: brad
Date: Fri Mar 31 17:13:17 2017
New Revision: 299269
URL: http://llvm.org/viewvc/llvm-project?rev=299269&view=rev
Log:
Add/update PIE defaults for OpenBSD.
Modified:
cfe/trunk/lib/Driver/ToolChains/CommonArgs.cpp
cfe/trunk/test/Driver/pic.c
Modified: cfe/trunk/lib/Driver/Tool
EricWF updated this revision to Diff 93715.
EricWF added a comment.
- Correctly report array types as aggregates. (Woops!)
- Also report vector types as aggregates. This behavior mirrors GCC.
- report _Complex int and _Complex float as aggregates as well. Currently GCC
does not have this behavi
Thanks. Unfortunately that's one of the ways we figured it out :(.
The status quo, before this commit, was an ABI difference between Objective-C++
(-fobjc-arc) and C++/Objective-C++ (-fno-objc-arc), which is... really bad.
But rare enough I guess it took a couple of years to find.
I suspect/h
chh reopened this revision.
chh added a comment.
This revision is now accepted and ready to land.
This was reverted due to one failed test case clang-tidy/llvm-include-order.cpp
on Windows:
Assertion failed: EndColNo <= map.getSourceLine().size() && "Invalid range!",
file
C:\Buildbot\Slave\llv
EricWF updated this revision to Diff 93709.
EricWF added a comment.
- Update the doc to reflect that GCC has implemented this trait (and to assume
MS will as well).
- Rewrite the tests using static_assert over god-awful old style array asserts.
https://reviews.llvm.org/D31513
Files:
docs/Lan
This will be ABI breaking for Objective-C++ users. I'm not objecting to
fixing the bogus configuration, but I just wanted to point it out.
/Eric
On Fri, Mar 31, 2017 at 11:39 AM, Duncan P. N. Exon Smith via cfe-commits <
cfe-commits@lists.llvm.org> wrote:
> Author: dexonsmith
> Date: Fri Mar 31
rnk added inline comments.
Comment at: lib/Driver/ToolChains/Cuda.cpp:324
+ "CUDA toolchain not expected for an OpenMP host device.");
+ if (JA.isDeviceOffloading(Action::OFK_OpenMP)) {
+if (Output.isFilename()) {
This entire if block constructs a co
pcc accepted this revision.
pcc added a comment.
This revision is now accepted and ready to land.
LGTM
https://reviews.llvm.org/D31534
___
cfe-commits mailing list
cfe-commits@lists.llvm.org
http://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits
tejohnson updated this revision to Diff 93695.
tejohnson added a comment.
Implement review suggestions
https://reviews.llvm.org/D31534
Files:
lib/CodeGen/BackendUtil.cpp
test/CodeGen/thinlto-emit-llvm.c
Index: test/CodeGen/thinlto-emit-llvm.c
==
gerazo added inline comments.
Comment at: tools/xtu-analysis/xtu-analyze.py:29
+
+threading_factor = int(multiprocessing.cpu_count() * 1.5)
+analyser_output_formats = ['plist-multi-file', 'plist', 'plist-html',
danielmarjamaki wrote:
> does this mean that if ther
pcc added a comment.
Why not call `Module::print()` or `WriteBitcodeToFile` directly instead of
creating a pass manager?
https://reviews.llvm.org/D31534
___
cfe-commits mailing list
cfe-commits@lists.llvm.org
http://lists.llvm.org/cgi-bin/mailman/l
yaxunl marked 3 inline comments as done.
yaxunl added inline comments.
Comment at: lib/AST/ASTContext.cpp:9553
+ // alloca.
+ if (AS == LangAS::Default && LangOpts.OpenCL)
+return getTargetInfo().getDataLayout().getAllocaAddrSpace();
Anastasia wrote:
> yaxu
delcypher added inline comments.
Comment at: cmake/modules/FindZ3.cmake:5
+PKG_CHECK_MODULES(PC_Z3 QUIET libz3)
+set(Z3_DEFINITIONS ${PC_LIBZ3_CFLAGS_OTHER})
+
ddcc wrote:
> delcypher wrote:
> > @ddcc This CMake variable is set but never used. Also based on the n
delcypher added inline comments.
Comment at: lib/StaticAnalyzer/Core/Z3ConstraintManager.cpp:674
+ // are the same size.
+ Z3_get_numeral_uint64(Z3Context::ZC, AST,
+reinterpret_cast<__uint64 *>(&Value));
ddcc wrote:
> The on
szepet accepted this revision.
szepet added a comment.
This revision is now accepted and ready to land.
LGTM, thank you (again)!
https://reviews.llvm.org/D31541
___
cfe-commits mailing list
cfe-commits@lists.llvm.org
http://lists.llvm.org/cgi-bin/ma
ibronstein created this revision.
ibronstein added a project: clang-c.
An idea behind the commit is to have an option (AllowReparse = false) in
ASTUnit::Reparse() which will disallow rebuilding the precompiled preamble.
https://reviews.llvm.org/D31544
Files:
include/clang/Frontend/ASTUnit.h
Author: dexonsmith
Date: Fri Mar 31 12:39:56 2017
New Revision: 299236
URL: http://llvm.org/viewvc/llvm-project?rev=299236&view=rev
Log:
Use strong enums independently of -fobjc-arc
r145698 introduced _LIBCPP_HAS_NO_STRONG_ENUMS by copy-pasting the
__has_feature check from objc_arc_weak/_LIBCPP_H
szepet added inline comments.
Comment at: lib/StaticAnalyzer/Checkers/MisusedMovedObjectChecker.cpp:426
+
+State = State->remove(WholeObjectRegion);
C.addTransition(State);
szepet wrote:
> I am wondering if I made a mistake but I think this should be
>
Author: ctopper
Date: Fri Mar 31 12:22:30 2017
New Revision: 299233
URL: http://llvm.org/viewvc/llvm-project?rev=299233&view=rev
Log:
[Sema][X86] Update immediate check for gather/scatter prefetch instructions to
match the _MM_HINT_T0/T1 constant definitions
Our _MM_HINT_T0/T1 constant values ar
szepet added a comment.
Thank you for working on that, Artem!
The changes look good, just one comment about that suspicious remove.
Comment at: lib/StaticAnalyzer/Checkers/MisusedMovedObjectChecker.cpp:426
+
+State = State->remove(WholeObjectRegion);
C.addTransition(St
Anastasia added inline comments.
Comment at: test/SemaOpenCL/atomic-init.cl:6
+kernel void test_atomic_initialization() {
+ a1 = 1; // expected-error {{atomic variable can only be assigned to a
compile time constant}}
+ atomic_int a2 = 0; // expected-error {{atomic variable ca
ddcc added inline comments.
Comment at: cmake/modules/FindZ3.cmake:3
+# in the find_path() and find_library() calls
+find_package(PkgConfig QUIET)
+PKG_CHECK_MODULES(PC_Z3 QUIET libz3)
delcypher wrote:
> @ddcc Seeing as you don't want to use the new upstream Z3 C
gtbercea updated this revision to Diff 93679.
gtbercea added a comment.
Herald added a subscriber: rengolin.
Split patch.
Repository:
rL LLVM
https://reviews.llvm.org/D29658
Files:
include/clang/Basic/DiagnosticDriverKinds.td
lib/Driver/Driver.cpp
test/OpenMP/target_messages.cpp
Inde
Anastasia added a comment.
In https://reviews.llvm.org/D31404#714906, @yaxunl wrote:
> In https://reviews.llvm.org/D31404#714244, @Anastasia wrote:
>
> > I can't see clearly why the alloca has to be extended to accommodate the
> > address space too? Couldn't the address space for alloca just be
gtbercea updated this revision to Diff 93676.
gtbercea added a comment.
Move test.
Repository:
rL LLVM
https://reviews.llvm.org/D29644
Files:
lib/Driver/ToolChains/Cuda.cpp
test/Driver/cuda-external-tools.cu
Index: test/Driver/cuda-external-tools.cu
gtbercea updated this revision to Diff 93672.
gtbercea marked an inline comment as done.
gtbercea added a comment.
Fix prefix.
Repository:
rL LLVM
https://reviews.llvm.org/D29642
Files:
lib/Driver/ToolChains/Cuda.cpp
test/Driver/openmp-offload.c
Index: test/Driver/openmp-offload.c
gtbercea updated this revision to Diff 93670.
gtbercea added a comment.
run clang-format on test.
Repository:
rL LLVM
https://reviews.llvm.org/D29904
Files:
lib/Frontend/CompilerInvocation.cpp
test/OpenMP/target_parallel_no_exceptions.cpp
Index: test/OpenMP/target_parallel_no_exception
This revision was automatically updated to reflect the committed changes.
Closed by commit rL299229: [mips][msa] Range adjustment for ldi_b builtin
function operand (authored by petarj).
Changed prior to commit:
https://reviews.llvm.org/D31082?vs=92439&id=93669#toc
Repository:
rL LLVM
https
Author: petarj
Date: Fri Mar 31 11:16:43 2017
New Revision: 299229
URL: http://llvm.org/viewvc/llvm-project?rev=299229&view=rev
Log:
[mips][msa] Range adjustment for ldi_b builtin function operand
Reasoning behind this change was allowing the function to accept all values
from range [-128, 255] s
gtbercea marked 2 inline comments as done.
gtbercea added inline comments.
Comment at: lib/Frontend/CompilerInvocation.cpp:2167-2172
+// Set the flag to prevent the implementation from emitting device
exception
+// handling code for those requiring so.
+if (Opts.Open
gtbercea updated this revision to Diff 93665.
gtbercea added a comment.
Redo regression test.
Repository:
rL LLVM
https://reviews.llvm.org/D29904
Files:
lib/Frontend/CompilerInvocation.cpp
test/OpenMP/target_parallel_no_exceptions.cpp
Index: test/OpenMP/target_parallel_no_exceptions.cp
NoQ created this revision.
The `printState()` method adds the checker's information to the
`State->dump()`. I find it very handy when debugging by looking at the exploded
graphs, so i think it's great to have this method implemented in all checkers.
It helped me already.
I think it's not a pro
yaron.keren created this revision.
Address http://bugs.llvm.org/pr30994 so that a non-friend can properly replace
a friend, and a visible friend can properly replace an invisible friend but not
vice verse. This also fixes two FIXME in SemaTemplate/friend-template.cpp.
Repository:
rL LLVM
ht
xazax.hun updated this revision to Diff 93658.
xazax.hun marked 11 inline comments as done.
xazax.hun added a comment.
- Fixed some of the review comments and some other cleanups.
https://reviews.llvm.org/D30691
Files:
include/clang/AST/ASTContext.h
include/clang/AST/Decl.h
include/clang/
NoQ created this revision.
If a state reset method is defined in a parent class, but called over an object
of a child class, then the checker doesn't treat this as a state reset, at
least for the sake of "Copying a 'moved-from' object" warning class.
The patch fixes it, but Peter may have a bet
This revision was automatically updated to reflect the committed changes.
Closed by commit rL299226: [Modules][PCH] Serialize #pragma pack (authored by
arphaman).
Changed prior to commit:
https://reviews.llvm.org/D31241?vs=92638&id=93650#toc
Repository:
rL LLVM
https://reviews.llvm.org/D312
Author: arphaman
Date: Fri Mar 31 10:36:21 2017
New Revision: 299226
URL: http://llvm.org/viewvc/llvm-project?rev=299226&view=rev
Log:
[Modules][PCH] Serialize #pragma pack
This patch serializes the state of #pragma pack. It preserves the state of the
pragma from a PCH/from modules in a file that
This revision was automatically updated to reflect the committed changes.
Closed by commit rL299225: [libunwind] Clean up macro usage. (authored by
rsingh).
Changed prior to commit:
https://reviews.llvm.org/D31078?vs=93646&id=93647#toc
Repository:
rL LLVM
https://reviews.llvm.org/D31078
Fi
Author: rsingh
Date: Fri Mar 31 10:28:06 2017
New Revision: 299225
URL: http://llvm.org/viewvc/llvm-project?rev=299225&view=rev
Log:
[libunwind] Clean up macro usage.
Convention in libunwind is to use !defined(FOOT) not !FOO.
Differential Revision: https://reviews.llvm.org/D31078
Modified:
rs updated this revision to Diff 93646.
rs marked 6 inline comments as done.
https://reviews.llvm.org/D31078
Files:
include/__libunwind_config.h
include/libunwind.h
include/unwind.h
src/AddressSpace.hpp
src/Unwind-EHABI.cpp
src/Unwind-EHABI.h
src/Unwind-sjlj.c
src/UnwindCursor.hpp
olista01 added a comment.
What advantages does this have over the current way of printing diagnostics? If
this is just to get -w and -Werror working, would it not be easier to pass
those through to the assembler, than to send all diagnostics back through
clang? We already have some flags in MCT
delcypher added inline comments.
Comment at: lib/StaticAnalyzer/Core/Z3ConstraintManager.cpp:619
+
+llvm::APSInt Int = llvm::APSInt(Float.bitcastToAPInt(), true);
+Z3Expr Z3Int = Z3Expr::fromAPSInt(Int);
@ddcc Why use APSInt here? Why not APInt, we are lo
gtbercea updated this revision to Diff 93643.
gtbercea added a comment.
Re-order conditions and run clang-format.
Repository:
rL LLVM
https://reviews.llvm.org/D29339
Files:
lib/Driver/ToolChains/Clang.cpp
lib/Frontend/CompilerInstance.cpp
lib/Frontend/CompilerInvocation.cpp
lib/Front
Thanks!
On Fri, Mar 31, 2017 at 9:30 AM, Daniel Jasper via cfe-commits <
cfe-commits@lists.llvm.org> wrote:
> Author: djasper
> Date: Fri Mar 31 08:30:24 2017
> New Revision: 299214
>
> URL: http://llvm.org/viewvc/llvm-project?rev=299214&view=rev
> Log:
> clang-format: Fix post-commit review comm
delcypher added inline comments.
Comment at: CMakeLists.txt:188
+find_package(Z3 4.5)
+
ddcc wrote:
> delcypher wrote:
> > delcypher wrote:
> > > @ddcc It is of course up to you but I recently [[ added support for using
> > > `libz3` directly | added support f
Author: tejohnson
Date: Fri Mar 31 08:48:18 2017
New Revision: 299217
URL: http://llvm.org/viewvc/llvm-project?rev=299217&view=rev
Log:
Add back test for r299152
I am hoping the bot failures are addressed by using cc1 for the ThinLTO
backend invocations as well.
Modified:
cfe/trunk/test/Code
tejohnson abandoned this revision.
tejohnson added a comment.
Subsumed by https://reviews.llvm.org/D31534
https://reviews.llvm.org/D31101
___
cfe-commits mailing list
cfe-commits@lists.llvm.org
http://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-comm
tejohnson created this revision.
Herald added a subscriber: Prazek.
Use PreCodeGenModuleHook to invoke the correct writer when emitting LLVM
IR, returning false to skip codegen from within thinBackend.
https://reviews.llvm.org/D31534
Files:
lib/CodeGen/BackendUtil.cpp
test/CodeGen/thinlto-e
Author: djasper
Date: Fri Mar 31 08:30:24 2017
New Revision: 299214
URL: http://llvm.org/viewvc/llvm-project?rev=299214&view=rev
Log:
clang-format: Fix post-commit review comment of r299204, use Style.isCpp().
Also, while at it, s/IsCpp/isCpp/ so that it follows LLVM style.
Modified:
cfe/tru
chrib updated this revision to Diff 93631.
chrib added a dependency: D31139: [LLVMbugs] [Bug 18710] Only generate
.ARM.exidx and .ARM.extab when needed with EHABI.
chrib added a comment.
1. Updating https://reviews.llvm.org/D31140: [LLVMbugs] [Bug 18710] Only
generate .ARM.exidx and .ARM.extab
Please use style.isCpp() (spelling?) instead of comparing with LK_Cpp and
LK_ObjC.
On Mar 31, 2017 8:17 AM, "Daniel Jasper via cfe-commits" <
cfe-commits@lists.llvm.org> wrote:
Author: djasper
Date: Fri Mar 31 07:04:37 2017
New Revision: 299204
URL: http://llvm.org/viewvc/llvm-project?rev=299204
Author: hans
Date: Fri Mar 31 07:50:42 2017
New Revision: 299210
URL: http://llvm.org/viewvc/llvm-project?rev=299210&view=rev
Log:
clang-format vs plugin support for Visual Studio 2017
With the release of Visual Studio 2017, we need to at the very least
claim support for it in the current manifes
delcypher added inline comments.
Comment at: cmake/modules/FindZ3.cmake:3
+# in the find_path() and find_library() calls
+find_package(PkgConfig QUIET)
+PKG_CHECK_MODULES(PC_Z3 QUIET libz3)
@ddcc Seeing as you don't want to use the new upstream Z3 CMake package c
Author: djasper
Date: Fri Mar 31 07:04:37 2017
New Revision: 299204
URL: http://llvm.org/viewvc/llvm-project?rev=299204&view=rev
Log:
clang-format: [JavaScript] Ignore QT keywords.
Modified:
cfe/trunk/lib/Format/UnwrappedLineParser.cpp
cfe/trunk/unittests/Format/FormatTestJS.cpp
Modified
Author: rksimon
Date: Fri Mar 31 06:00:53 2017
New Revision: 299198
URL: http://llvm.org/viewvc/llvm-project?rev=299198&view=rev
Log:
Spelling mistakes in comments. NFCI.
Modified:
cfe/trunk/include/clang/AST/ASTContext.h
cfe/trunk/include/clang/AST/Decl.h
cfe/trunk/lib/Sema/SemaCheck
Author: rksimon
Date: Fri Mar 31 05:40:56 2017
New Revision: 299193
URL: http://llvm.org/viewvc/llvm-project?rev=299193&view=rev
Log:
Strip trailing whitespace
Modified:
cfe/trunk/include/clang/AST/ASTContext.h
Modified: cfe/trunk/include/clang/AST/ASTContext.h
URL:
http://llvm.org/viewvc/l
delcypher added inline comments.
Comment at: lib/StaticAnalyzer/Core/Z3ConstraintManager.cpp:559
+ Float.toString(Chars, 0, 0);
+ AST = Z3_mk_numeral(Z3Context::ZC, Chars.c_str(), Sort);
+ break;
ddcc wrote:
> delcypher wrote:
> > @ddcc I'm not con
Author: echuraev
Date: Fri Mar 31 05:14:52 2017
New Revision: 299192
URL: http://llvm.org/viewvc/llvm-project?rev=299192&view=rev
Log:
[OpenCL] Do not generate "kernel_arg_type_qual" metadata for non-pointer args
Summary:
"kernel_arg_type_qual" metadata should contain const/volatile/restrict
tags
Hahnfeld requested changes to this revision.
Hahnfeld added inline comments.
This revision now requires changes to proceed.
Comment at: lib/Frontend/CompilerInvocation.cpp:2181-2190
+ if (!(TT.getArch() == llvm::Triple::ppc ||
+TT.getArch() == llvm::Triple::ppc64
EricWF updated this revision to Diff 93607.
EricWF added a comment.
- Fix typo in `// UNSUPPORTED` directive.
https://reviews.llvm.org/D31515
Files:
include/__config
include/type_traits
test/libcxx/utilities/meta/meta.unary/meta.unary.prop/missing_is_aggregate_trait.fail.cpp
test/std/u
EricWF updated this revision to Diff 93606.
EricWF added a comment.
- Fix accidental change.
https://reviews.llvm.org/D31515
Files:
include/__config
include/type_traits
test/libcxx/utilities/meta/meta.unary/meta.unary.prop/missing_is_aggregate_trait.fail.cpp
test/std/utilities/meta/met
Hahnfeld added a reviewer: rnk.
Hahnfeld added a subscriber: rnk.
Hahnfeld added a comment.
Please format all comments as full sentences.
Comment at: lib/Driver/ToolChains/Cuda.cpp:338
+Args.getAllArgValues(options::OPT_march_EQ);
+assert(GPUArchs.size() == 1 && "Ex
danielmarjamaki added inline comments.
Comment at: include/clang/AST/ASTContext.h:42
#include "clang/Basic/Specifiers.h"
+#include "clang/Basic/VersionTuple.h"
#include "llvm/ADT/APSInt.h"
I don't see why this is included here.
Comment at: in
Author: d0k
Date: Fri Mar 31 04:19:25 2017
New Revision: 299191
URL: http://llvm.org/viewvc/llvm-project?rev=299191&view=rev
Log:
[msan] Turn off lifetime markers even when use after scope checking is on.
Since r299174 use after scope checking is on by default. Even though
msan doesn't check for
EricWF updated this revision to Diff 93605.
EricWF added a comment.
GCC implemented `__is_aggregate` hours ago as part of 7.0.1. Update the feature
checks to reflect that.
https://reviews.llvm.org/D31515
Files:
include/__config
include/type_traits
test/libcxx/utilities/meta/meta.unary/m
Hahnfeld accepted this revision.
Hahnfeld added a comment.
This revision is now accepted and ready to land.
LGTM
Comment at: lib/Driver/ToolChains/Clang.cpp:1967-1968
+C.getSingleOffloadToolChain()
+->getTriple()
+.normalize();
+CmdArgs.push_
echuraev updated this revision to Diff 93602.
echuraev marked an inline comment as done.
https://reviews.llvm.org/D30643
Files:
include/clang/Basic/DiagnosticSemaKinds.td
lib/Sema/SemaExpr.cpp
lib/Sema/SemaInit.cpp
test/Parser/opencl-atomics-cl20.cl
test/SemaOpenCL/atomic-init.cl
Inde
Author: hokein
Date: Fri Mar 31 02:55:22 2017
New Revision: 299190
URL: http://llvm.org/viewvc/llvm-project?rev=299190&view=rev
Log:
[clang-tidy] Correct code-block in the doc.
Modified:
clang-tools-extra/trunk/docs/clang-tidy/checks/readability-container-size-empty.rst
Modified:
clang-too
echuraev updated this revision to Diff 93596.
https://reviews.llvm.org/D31321
Files:
lib/CodeGen/CodeGenFunction.cpp
test/CodeGenOpenCL/kernel-arg-info.cl
Index: test/CodeGenOpenCL/kernel-arg-info.cl
===
--- test/CodeGenOpenCL/
Hahnfeld requested changes to this revision.
Hahnfeld added a comment.
This revision now requires changes to proceed.
Out of interest: This is a limition of the implementation, right? Because the
standard only says: `A throw executed inside a target region must cause
execution to resume within t
xiangzhai added a comment.
Hi Raphael,
Then I will rebase my patch https://reviews.llvm.org/D31320 please review it
when you have free time, thanks a lot!
Regards,
Leslie Zhai
https://reviews.llvm.org/D23418
___
cfe-commits mailing list
cfe-commi
83 matches
Mail list logo