[libc-commits] [llvm] [compiler-rt] [libcxx] [clang-tools-extra] [clang] [libc] [flang] [Clang] Generate the GEP instead of adding AST nodes (PR #73730)
Bill Wendling via libc-commits
libc-commits at lists.llvm.org
Tue Dec 12 16:35:45 PST 2023
================
@@ -4022,8 +4169,36 @@ LValue CodeGenFunction::EmitArraySubscriptExpr(const ArraySubscriptExpr *E,
ArrayLV = EmitArraySubscriptExpr(ASE, /*Accessed*/ true);
else
ArrayLV = EmitLValue(Array);
+
auto *Idx = EmitIdxAfterBase(/*Promote*/true);
+ if (SanOpts.has(SanitizerKind::ArrayBounds)) {
----------------
bwendling wrote:
Unfortunately, all pointers are opaque now, so there's no way to tell what type it is. So it's hard to know when to stop.
https://github.com/llvm/llvm-project/pull/73730
More information about the libc-commits
mailing list