summaryrefslogtreecommitdiffstats
path: root/llvm
diff options
context:
space:
mode:
authorJeffrey Yasskin <jyasskin@google.com>2009-11-17 00:43:13 +0000
committerJeffrey Yasskin <jyasskin@google.com>2009-11-17 00:43:13 +0000
commit7c57c41d5f8e700151c5eeb2b7e0e65f4d3149a1 (patch)
tree781ea9f90b19ec33698c81adfcd8b4a0386e8dc1 /llvm
parentc40943224d632c08d04ae22d8cc07696f7596b24 (diff)
downloadbcm5719-llvm-7c57c41d5f8e700151c5eeb2b7e0e65f4d3149a1.tar.gz
bcm5719-llvm-7c57c41d5f8e700151c5eeb2b7e0e65f4d3149a1.zip
In GlobalVariable::setInitializer, assert that the initializer has the
right type. llvm-svn: 89014
Diffstat (limited to 'llvm')
-rw-r--r--llvm/include/llvm/GlobalVariable.h16
-rw-r--r--llvm/lib/VMCore/Globals.cpp15
2 files changed, 19 insertions, 12 deletions
diff --git a/llvm/include/llvm/GlobalVariable.h b/llvm/include/llvm/GlobalVariable.h
index 428ce90fefc..68bd1b3eab1 100644
--- a/llvm/include/llvm/GlobalVariable.h
+++ b/llvm/include/llvm/GlobalVariable.h
@@ -99,18 +99,10 @@ public:
assert(hasInitializer() && "GV doesn't have initializer!");
return static_cast<Constant*>(Op<0>().get());
}
- inline void setInitializer(Constant *CPV) {
- if (CPV == 0) {
- if (hasInitializer()) {
- Op<0>().set(0);
- NumOperands = 0;
- }
- } else {
- if (!hasInitializer())
- NumOperands = 1;
- Op<0>().set(CPV);
- }
- }
+ /// setInitializer - Sets the initializer for this global variable, removing
+ /// any existing initializer if InitVal==NULL. If this GV has type T*, the
+ /// initializer must have type T.
+ void setInitializer(Constant *InitVal);
/// If the value is a global constant, its value is immutable throughout the
/// runtime execution of the program. Assigning a value into the constant
diff --git a/llvm/lib/VMCore/Globals.cpp b/llvm/lib/VMCore/Globals.cpp
index 2d7d1b960b6..94bf3dea9ab 100644
--- a/llvm/lib/VMCore/Globals.cpp
+++ b/llvm/lib/VMCore/Globals.cpp
@@ -171,6 +171,21 @@ void GlobalVariable::replaceUsesOfWithOnConstant(Value *From, Value *To,
this->setOperand(0, cast<Constant>(To));
}
+void GlobalVariable::setInitializer(Constant *InitVal) {
+ if (InitVal == 0) {
+ if (hasInitializer()) {
+ Op<0>().set(0);
+ NumOperands = 0;
+ }
+ } else {
+ assert(InitVal->getType() == getType()->getElementType() &&
+ "Initializer type must match GlobalVariable type");
+ if (!hasInitializer())
+ NumOperands = 1;
+ Op<0>().set(InitVal);
+ }
+}
+
/// copyAttributesFrom - copy all additional attributes (those not needed to
/// create a GlobalVariable) from the GlobalVariable Src to this one.
void GlobalVariable::copyAttributesFrom(const GlobalValue *Src) {
OpenPOWER on IntegriCloud