Jake-Egan created this revision.
Herald added subscribers: kbarton, hiraditya, nemanjai.
Herald added a project: All.
Jake-Egan requested review of this revision.
Herald added subscribers: llvm-commits, cfe-commits, MaskRay.
Herald added projects: clang, LLVM.
Repository:
rG LLVM Github Monorepo
ziqingluo-90 added inline comments.
Comment at: clang/lib/Analysis/UnsafeBufferUsage.cpp:2293
+// search of connected components.
+if (!ParmsNeedFix.empty()) {
+ auto First = ParmsNeedFix.begin(), Last = First;
NoQ wrote:
> ziqingluo-90 wrote:
>
MaskRay added inline comments.
Comment at: llvm/lib/DebugInfo/DWARF/DWARFContext.cpp:1896
+// Each section in COFF can directly contain relocations.
+if (isa(&Obj) && Section.relocations().empty())
+ continue;
HaohaiWen wrote:
> skan wrot
MaskRay added a comment.
Tests seem mostly fine, but since this is the primary patch for a major
feature, consider adding more descriptions how this works?
For example, you can add something like the following to the summary/commit
message, which should make a curious reader know how to play wi
NoQ added inline comments.
Comment at: clang/lib/Analysis/UnsafeBufferUsage.cpp:2293
+// search of connected components.
+if (!ParmsNeedFix.empty()) {
+ auto First = ParmsNeedFix.begin(), Last = First;
ziqingluo-90 wrote:
> NoQ wrote:
> > ziqing
yronglin added inline comments.
Comment at: clang/lib/AST/ExprConstant.cpp:4893
+ // Stop evaluate if E is a RecoveryExpr.
+ if (isa(E))
+return false;
yronglin wrote:
> erichkeane wrote:
> > I'd probably suggest `E->containsErrors()` instead, to cover case
ddpagan added inline comments.
Comment at: clang/include/clang/Basic/DiagnosticSemaKinds.td:9823
+def err_omp_loop_reduction_clause : Error<
+ "reduction clause not handled with '#pragma omp loop bind(teams)'">;
def warn_break_binds_to_switch : Warning<
Should
shafik added inline comments.
Comment at: clang/lib/AST/ExprConstant.cpp:4988
+ if (SS->getCond()->containsErrors() ||
+ !EvaluateDependentExpr(SS->getCond(), Info))
return ESR_Failed;
yronglin wrote:
> erichkeane wrote:
> > It seems to me
shafik added a comment.
I am wondering why we don't fold this into `-Wreserved-identifier`
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D152632/new/
https://reviews.llvm.org/D152632
___
cfe-commits mailing list
cfe-commits@lists.llvm.org
http
shafik added inline comments.
Comment at: clang/include/clang/Basic/IdentifierTable.h:56
+ NotStartsWithUnderscore,
+ ContainsDoubleUnderscore,
+};
I would think starting with a double underscore would also not be allowed, at
least that is my reading.
CHANGE
shafik added inline comments.
Comment at: clang/lib/AST/ExprConstant.cpp:4989
if (SS->getCond()->isValueDependent()) {
if (!EvaluateDependentExpr(SS->getCond(), Info))
return ESR_Failed;
As far as I can tell `Value` will still not be set if w
PiotrZSL added inline comments.
Comment at: clang-tools-extra/clang-tidy/fuchsia/GlobalVariablesCheck.cpp:26
+void GlobalVariablesCheck::registerMatchers(MatchFinder *Finder) {
+ const auto is_global_or_static_candidate =
+ allOf(hasGlobalStorage(), isDefinition(), unless(i
shafik added inline comments.
Comment at: clang/lib/Sema/SemaExprCXX.cpp:4003-4004
+ // that are not referenced or used later. e.g.: if (int var = init());
+ ConditionVar->setReferenced(false);
+ ConditionVar->setIsUsed(false);
+
Repository:
rG LLVM Githu
craig.topper added inline comments.
Comment at: llvm/lib/Support/RISCVISAInfo.cpp:123
{"xsfvcp", RISCVExtensionVersion{1, 0}},
+{"xsfcie", RISCVExtensionVersion{1, 0}},
{"xtheadba", RISCVExtensionVersion{1, 0}},
Alphabetize.
Comme
Author: Martin Braenne
Date: 2023-06-23T06:49:28Z
New Revision: efbb4aaacedf0ded734d0b40c42d4419d03a59ff
URL:
https://github.com/llvm/llvm-project/commit/efbb4aaacedf0ded734d0b40c42d4419d03a59ff
DIFF:
https://github.com/llvm/llvm-project/commit/efbb4aaacedf0ded734d0b40c42d4419d03a59ff.diff
LOG
This revision was automatically updated to reflect the committed changes.
Closed by commit rGefbb4aaacedf: [clang][dataflow] Dump useful debugging
information when we crash. (authored by mboehme).
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D153549/
tbaeder added a comment.
Ping
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D153001/new/
https://reviews.llvm.org/D153001
___
cfe-commits mailing list
cfe-commits@lists.llvm.org
https://lists.llvm.org/cgi
201 - 217 of 217 matches
Mail list logo