This is a follow-up to r320128. Eli pointed out that there is some gray
area in the language standard about whether the constant size is exact,
or a lower bound.
https://reviews.llvm.org/D40940
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@320185
91177308-0d34-0410-b5e6-
96231b3b80d8
if (!ParamDecl)
return nullptr;
- // Arrays don't have pass_object_size attributes, but if they have a constant
- // size modifier it's the array size (C99 6.5.7.2p1).
- if (auto *DecayedArrayTy = dyn_cast<DecayedType>(ParamDecl->getType()))
- if (auto *ArrayTy =
- dyn_cast<ConstantArrayType>(DecayedArrayTy->getOriginalType()))
- return llvm::ConstantInt::get(SizeTy,
- ArrayTy->getSize().getLimitedValue());
-
auto *POSAttr = ParamDecl->getAttr<PassObjectSizeAttr>();
if (!POSAttr)
return nullptr;
// CHECK-LABEL: define i32 @cat(
int cat(int p[static 10], int n) {
- // CHECK: icmp ult i64 {{.*}}, 10, !nosanitize
- // CHECK: __ubsan_handle_out_of_bounds
+ // CHECK-NOT: __ubsan_handle_out_of_bounds
// CHECK: ret i32
return p[n];
}