MaskRay added a comment.
What's the advantage?
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D78902/new/
https://reviews.llvm.org/D78902
___
cfe-commits mailing list
cfe-commits@lists.llvm.org
https://lis
plotfi added a comment.
@lanza I did it as a CodeGen option for now because we don't want anything like
this to be the default until the ABI is fleshed out.
I think one danger in altering the name of the function to some extent is you
dont want to clash potentially with user defined C functions.
Author: Richard Smith
Date: 2020-08-20T15:40:09-07:00
New Revision: 038edf6029bafe70b1f7165abe2b0e61ddf506b3
URL:
https://github.com/llvm/llvm-project/commit/038edf6029bafe70b1f7165abe2b0e61ddf506b3
DIFF:
https://github.com/llvm/llvm-project/commit/038edf6029bafe70b1f7165abe2b0e61ddf506b3.diff
Author: JonChesterfield
Date: 2020-08-20T23:50:33+01:00
New Revision: 3d82c9b6960afe50a76b8c23e9bc42c51d41e767
URL:
https://github.com/llvm/llvm-project/commit/3d82c9b6960afe50a76b8c23e9bc42c51d41e767
DIFF:
https://github.com/llvm/llvm-project/commit/3d82c9b6960afe50a76b8c23e9bc42c51d41e767.dif
JonChesterfield added inline comments.
Comment at: clang/test/CodeGenCXX/attr-loader-uninitialized.cpp:34
+
+// CHECK: @templ_int = global %struct.templ undef, align 8
+templ templ_int [[clang::loader_uninitialized]];
This broke 32 bit builds where the pointer is
MaskRay added inline comments.
Comment at: compiler-rt/lib/builtins/int_mulv_impl.inc:1
-//===-- mulvdi3.c - Implement __mulvdi3
---===//
+//===-- int_mulv_impl.inc - Implement __mulv[sdt]i3
---===//
//
`---*
mehdi_amini added a comment.
Overall that would likely work for XLA. Something I'd like to mention though in
response to:
> The veclib type is also tied to the accepted values for -fveclib, which is a
> list of supported lib,
`-fveclib` is a Clang thing, it shouldn't limit what LLVM does. Of c
Author: Richard Smith
Date: 2020-08-20T16:36:25-07:00
New Revision: efeb65d53b88d9c3ac3a185c396efd8db8c9f7d9
URL:
https://github.com/llvm/llvm-project/commit/efeb65d53b88d9c3ac3a185c396efd8db8c9f7d9
DIFF:
https://github.com/llvm/llvm-project/commit/efeb65d53b88d9c3ac3a185c396efd8db8c9f7d9.diff
Author: Richard Smith
Date: 2020-08-20T17:14:22-07:00
New Revision: 70923983e54253723600eb2f4cdfb0fbb347a364
URL:
https://github.com/llvm/llvm-project/commit/70923983e54253723600eb2f4cdfb0fbb347a364
DIFF:
https://github.com/llvm/llvm-project/commit/70923983e54253723600eb2f4cdfb0fbb347a364.diff
vsapsai added a comment.
Thanks for the review.
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D80263/new/
https://reviews.llvm.org/D80263
___
cfe-commits mailing list
cfe-commits@lists.llvm.org
https://li
This revision was automatically updated to reflect the committed changes.
Closed by commit rG7ac737e56bee: [HeaderSearch] Fix processing #import-ed
headers multiple times with modules… (authored by vsapsai).
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.o
Author: Volodymyr Sapsai
Date: 2020-08-20T17:41:28-07:00
New Revision: 7ac737e56bee721fb3535006140362c6e08726bb
URL:
https://github.com/llvm/llvm-project/commit/7ac737e56bee721fb3535006140362c6e08726bb
DIFF:
https://github.com/llvm/llvm-project/commit/7ac737e56bee721fb3535006140362c6e08726bb.di
This revision was automatically updated to reflect the committed changes.
Closed by commit rGfe86dbb32da2: [clang]: Remove assertion which checks
explicit declaration (authored by gousemoodhin, committed by rsmith).
Herald added a project: clang.
Herald added a subscriber: cfe-commits.
Repositor
Author: Gousemoodhin Nadaf
Date: 2020-08-20T18:15:43-07:00
New Revision: fe86dbb32da21e1c8c6eb4864a00f61ed3d003a3
URL:
https://github.com/llvm/llvm-project/commit/fe86dbb32da21e1c8c6eb4864a00f61ed3d003a3
DIFF:
https://github.com/llvm/llvm-project/commit/fe86dbb32da21e1c8c6eb4864a00f61ed3d003a3.
asbirlea requested changes to this revision.
asbirlea added a comment.
This revision now requires changes to proceed.
A couple of quick comments, I haven't gone into details yet.
- please split off the changes that are NFCs (deleted spaces) and clang-format
for ease to review.
- the test changes
rjmccall added a comment.
Please do this as a very late check rather than the first check.
You need to check for extra atomic padding. If there's any difference between
the sizes of the atomic type and its element, just add it as opaque data.
Repository:
rG LLVM Github Monorepo
CHANGES SIN
NoQ added a comment.
Heh, nice! Did you try to measure the actual impact of this change on memory
and/or performance?
I think it'd make perfect sense to keep the offset in a side map. We don't
compute it for all regions, and for most regions it doesn't need to be computed
*at all*.
Repositor
YangZhihui created this revision.
YangZhihui added reviewers: rsmith, craig.topper.
Herald added a project: clang.
Herald added a subscriber: cfe-commits.
YangZhihui requested review of this revision.
Fix some spelling error in the doc
Repository:
rG LLVM Github Monorepo
https://reviews.llvm.
hubert.reinterpretcast added inline comments.
Comment at: clang/lib/Basic/Targets/OSTargets.h:743
+Builder.defineMacro("__BFP__");
+// FIXME: __BOOL__ should be defined under strict -std=c89.
+Builder.defineMacro("__BOOL__");
MaskRay wrote:
> What is
sepavloff added inline comments.
Comment at: compiler-rt/lib/builtins/fp_div_impl.inc:99
+ // 0 < x0(b) < 1
+ // abs(x0(b) - 1/b) <= 3/4 - 1/sqrt(2)
+
atrosinenko wrote:
> sepavloff wrote:
> > This estimation is absent from the original comment. Do you have
njames93 added inline comments.
Comment at:
clang-tools-extra/clang-tidy/readability/SimplifyBooleanExprCheck.cpp:66
+ if (const auto *Negated = Result.Nodes.getNodeAs(Id)) {
+if (Negated->getOpcode() == UO_LNot &&
+isa(Negated->getSubExpr()))
aaron
101 - 121 of 121 matches
Mail list logo