remove dead .erase.
[oota-llvm.git] / lib / CodeGen / StackProtector.cpp
index e8ee82213a4a4169cc1e46c6bbd8b22499de1658..48bb5af4db3f9fdf1ae9fa53e82de69aff09a077 100644 (file)
@@ -113,7 +113,7 @@ bool StackProtector::RequiresStackProtector() const {
 
         if (const ArrayType *AT = dyn_cast<ArrayType>(AI->getAllocatedType())) {
           // We apparently only care about character arrays.
-          if (AT->getElementType() != Type::getInt8Ty(AT->getContext()))
+          if (!AT->getElementType()->isInteger(8))
             continue;
 
           // If an array has more than SSPBufferSize bytes of allocated space,