aboutsummaryrefslogtreecommitdiff
path: root/lib/CodeGen/MachineModuleInfo.cpp
diff options
context:
space:
mode:
authorDale Johannesen <dalej@apple.com>2008-01-30 19:44:39 +0000
committerDale Johannesen <dalej@apple.com>2008-01-30 19:44:39 +0000
commit43b8f3b7d375187f843181ad3331ea9f06b473f5 (patch)
tree594935a96eba2e37b8684a929dffc5f7da5a872c /lib/CodeGen/MachineModuleInfo.cpp
parent6b2cf285bd43fdc98ca68df477570ef6938d4fb2 (diff)
Adjust loop per review feedback.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@46569 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/MachineModuleInfo.cpp')
-rw-r--r--lib/CodeGen/MachineModuleInfo.cpp6
1 files changed, 2 insertions, 4 deletions
diff --git a/lib/CodeGen/MachineModuleInfo.cpp b/lib/CodeGen/MachineModuleInfo.cpp
index c1823947b1..80bedd0ad7 100644
--- a/lib/CodeGen/MachineModuleInfo.cpp
+++ b/lib/CodeGen/MachineModuleInfo.cpp
@@ -106,8 +106,7 @@ static GlobalVariable *getGlobalVariable(Value *V) {
return dyn_cast<GlobalVariable>(CE->getOperand(0));
} else if (CE->getOpcode() == Instruction::GetElementPtr) {
for (unsigned int i=1; i<CE->getNumOperands(); i++) {
- Constant* CI = cast<Constant>(CE->getOperand(i));
- if (!CI || !CI->isNullValue())
+ if (!CE->getOperand(i)->isNullValue())
return NULL;
}
return dyn_cast<GlobalVariable>(CE->getOperand(0));
@@ -126,8 +125,7 @@ static bool isGlobalVariable(Value *V) {
return isa<GlobalVariable>(CE->getOperand(0));
} else if (CE->getOpcode() == Instruction::GetElementPtr) {
for (unsigned int i=1; i<CE->getNumOperands(); i++) {
- Constant* CI = cast<Constant>(CE->getOperand(i));
- if (!CI || !CI->isNullValue())
+ if (!CE->getOperand(i)->isNullValue())
return false;
}
return isa<GlobalVariable>(CE->getOperand(0));