[ArgPromotion] Move ArgPart and OffsetAndArgPart to anonymous namespace
authorPavel Samolysov <samolisov@gmail.com>
Thu, 28 Apr 2022 16:51:39 +0000 (09:51 -0700)
committerArthur Eubanks <aeubanks@google.com>
Thu, 28 Apr 2022 16:51:46 +0000 (09:51 -0700)
The structure ArgPart and alias OffsetAndArgPart have been moved
into the anonymous namespace. NFC.

Reviewed By: aeubanks

Differential Revision: https://reviews.llvm.org/D124617

llvm/lib/Transforms/IPO/ArgumentPromotion.cpp

index 81faf2a..65bc392 100644 (file)
@@ -89,6 +89,8 @@ STATISTIC(NumArgumentsPromoted, "Number of pointer arguments promoted");
 STATISTIC(NumByValArgsPromoted, "Number of byval arguments promoted");
 STATISTIC(NumArgumentsDead, "Number of dead pointer args eliminated");
 
+namespace {
+
 struct ArgPart {
   Type *Ty;
   Align Alignment;
@@ -96,8 +98,11 @@ struct ArgPart {
   /// metadata transfer.
   LoadInst *MustExecLoad;
 };
+
 using OffsetAndArgPart = std::pair<int64_t, ArgPart>;
 
+} // end anonymous namespace
+
 static Value *createByteGEP(IRBuilderBase &IRB, const DataLayout &DL,
                             Value *Ptr, Type *ResElemTy, int64_t Offset) {
   // For non-opaque pointers, try to create a "nice" GEP if possible, otherwise