Wrap recursive function only used in assert in #ifndef NDEBUG.
authorBenjamin Kramer <benny.kra@googlemail.com>
Fri, 20 Feb 2015 13:15:49 +0000 (13:15 +0000)
committerBenjamin Kramer <benny.kra@googlemail.com>
Fri, 20 Feb 2015 13:15:49 +0000 (13:15 +0000)
Avoids unused function warnings in Release builds.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@230009 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Transforms/Scalar/RewriteStatepointsForGC.cpp

index 3c517ee2fa36f3b38dc33778e7e06801cd30ca17..0b5e297c9ee7f55079cac49ad981a947a4a915ba 100644 (file)
@@ -146,6 +146,8 @@ static bool isLiveGCReferenceAt(Value &V, Instruction *loc, DominatorTree &DT,
   // Given assumption that V dominates loc, this may be live
   return true;
 }
+
+#ifndef NDEBUG
 static bool isAggWhichContainsGCPtrType(Type *Ty) {
   if (VectorType *VT = dyn_cast<VectorType>(Ty))
     return isGCPointerType(VT->getScalarType());
@@ -155,11 +157,13 @@ static bool isAggWhichContainsGCPtrType(Type *Ty) {
   } else if (StructType *ST = dyn_cast<StructType>(Ty)) {
     bool UnsupportedType = false;
     for (Type *SubType : ST->subtypes())
-      UnsupportedType |= isGCPointerType(SubType) || isAggWhichContainsGCPtrType(SubType);
+      UnsupportedType |=
+          isGCPointerType(SubType) || isAggWhichContainsGCPtrType(SubType);
     return UnsupportedType;
   } else
     return false;
 }
+#endif
 
 // Conservatively identifies any definitions which might be live at the
 // given instruction. The  analysis is performed immediately before the