ABataev added inline comments.
================ Comment at: lib/CodeGen/CGOpenMPRuntime.cpp:2594-2597 + if (!VD->isExternallyVisible()) + getTargetEntryUniqueInfo(CGM.getContext(), + VD->getCanonicalDecl()->getBeginLoc(), + DeviceID, FileID, Line); ---------------- Merge these 2 checks into one, please. ``` OS << CGM.getMangledName(GlobalDecl(VD)); if (!VD->isExternallyVisible()) { unsigned DeviceID, Line; unsigned FileID = 0; getTargetEntryUniqueInfo(CGM.getContext(), VD->getCanonicalDecl()->getBeginLoc(), DeviceID, FileID, Line); OS << llvm::format("_%x", FileID); } OS << "_decl_tgt_ref_ptr"; ``` Repository: rC Clang CHANGES SINCE LAST ACTION https://reviews.llvm.org/D64592/new/ https://reviews.llvm.org/D64592 _______________________________________________ cfe-commits mailing list cfe-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits