aboutsummaryrefslogtreecommitdiffstats
path: root/lib/CodeGen/StackProtector.cpp
diff options
context:
space:
mode:
authorBill Wendling <isanbard@gmail.com>2009-10-23 00:01:05 +0000
committerBill Wendling <isanbard@gmail.com>2009-10-23 00:01:05 +0000
commit68e0213cf4b9f944a356cf578050cc17f19d1257 (patch)
treeb4ba529697e967f13d8a999ba94f488aa2cbe86a /lib/CodeGen/StackProtector.cpp
parente56e4a63f19ea3b7e40d84704d9b066698722db6 (diff)
downloadexternal_llvm-68e0213cf4b9f944a356cf578050cc17f19d1257.zip
external_llvm-68e0213cf4b9f944a356cf578050cc17f19d1257.tar.gz
external_llvm-68e0213cf4b9f944a356cf578050cc17f19d1257.tar.bz2
Neuter stack protectors by only checking character arrays. This is what GCC
does. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@84916 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/StackProtector.cpp')
-rw-r--r--lib/CodeGen/StackProtector.cpp7
1 files changed, 6 insertions, 1 deletions
diff --git a/lib/CodeGen/StackProtector.cpp b/lib/CodeGen/StackProtector.cpp
index 350bc6e..0204969 100644
--- a/lib/CodeGen/StackProtector.cpp
+++ b/lib/CodeGen/StackProtector.cpp
@@ -111,11 +111,16 @@ bool StackProtector::RequiresStackProtector() const {
// protectors.
return true;
- if (const ArrayType *AT = dyn_cast<ArrayType>(AI->getAllocatedType()))
+ if (const ArrayType *AT = dyn_cast<ArrayType>(AI->getAllocatedType())) {
+ // We apparently only care about character arrays.
+ if (AT->getElementType() != Type::getInt8Ty(AT->getContext()))
+ continue;
+
// If an array has more than SSPBufferSize bytes of allocated space,
// then we emit stack protectors.
if (SSPBufferSize <= TD->getTypeAllocSize(AT))
return true;
+ }
}
}