Skip to content

Commit 441a95c

Browse files
Zentrikvchuravy
authored andcommitted
Remove ineffective workaround for clangsa bug
1 parent aa3ae6a commit 441a95c

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

src/cgutils.cpp

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -466,9 +466,6 @@ Constant *literal_pointer_val_slot(jl_codegen_params_t &params, Module *M, jl_va
466466
if (addr->smalltag) {
467467
// some common builtin datatypes have a special pool for accessing them by smalltag id
468468
Constant *tag = ConstantInt::get(getInt32Ty(M->getContext()), addr->smalltag << 4);
469-
#ifdef __clang_analyzer__
470-
[[clang::suppress]] // Workaround https://github.com/llvm/llvm-project/issues/119415
471-
#endif
472469
Constant *smallp = ConstantExpr::getInBoundsGetElementPtr(getInt8Ty(M->getContext()), prepare_global_in(M, jl_small_typeof_var), tag);
473470
if (smallp->getType()->getPointerAddressSpace() != 0)
474471
smallp = ConstantExpr::getAddrSpaceCast(smallp, getPointerTy(M->getContext()));

0 commit comments

Comments
 (0)