mirror of
https://github.com/RPCSX/llvm.git
synced 2025-02-02 02:22:31 +00:00
Remove gep::isStructSelector
CTor's do not allow names anymore for StoreInst objects git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@2285 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
6428a27ee3
commit
d59b0af98b
@ -93,9 +93,8 @@ LoadInst::LoadInst(Value *Ptr, const std::string &Name = "")
|
|||||||
// StoreInst Implementation
|
// StoreInst Implementation
|
||||||
//===----------------------------------------------------------------------===//
|
//===----------------------------------------------------------------------===//
|
||||||
|
|
||||||
StoreInst::StoreInst(Value *Val, Value *Ptr, const std::vector<Value*> &Idx,
|
StoreInst::StoreInst(Value *Val, Value *Ptr, const std::vector<Value*> &Idx)
|
||||||
const std::string &Name = "")
|
: MemAccessInst(Type::VoidTy, Store, "") {
|
||||||
: MemAccessInst(Type::VoidTy, Store, Name) {
|
|
||||||
assert(getIndexedType(Ptr->getType(), Idx) && "Store operands invalid!");
|
assert(getIndexedType(Ptr->getType(), Idx) && "Store operands invalid!");
|
||||||
|
|
||||||
Operands.reserve(2+Idx.size());
|
Operands.reserve(2+Idx.size());
|
||||||
@ -106,8 +105,8 @@ StoreInst::StoreInst(Value *Val, Value *Ptr, const std::vector<Value*> &Idx,
|
|||||||
Operands.push_back(Use(Idx[i], this));
|
Operands.push_back(Use(Idx[i], this));
|
||||||
}
|
}
|
||||||
|
|
||||||
StoreInst::StoreInst(Value *Val, Value *Ptr, const std::string &Name = "")
|
StoreInst::StoreInst(Value *Val, Value *Ptr)
|
||||||
: MemAccessInst(Type::VoidTy, Store, Name) {
|
: MemAccessInst(Type::VoidTy, Store, "") {
|
||||||
|
|
||||||
Operands.reserve(2);
|
Operands.reserve(2);
|
||||||
Operands.push_back(Use(Val, this));
|
Operands.push_back(Use(Val, this));
|
||||||
@ -131,7 +130,3 @@ GetElementPtrInst::GetElementPtrInst(Value *Ptr, const std::vector<Value*> &Idx,
|
|||||||
for (unsigned i = 0, E = Idx.size(); i != E; ++i)
|
for (unsigned i = 0, E = Idx.size(); i != E; ++i)
|
||||||
Operands.push_back(Use(Idx[i], this));
|
Operands.push_back(Use(Idx[i], this));
|
||||||
}
|
}
|
||||||
|
|
||||||
bool GetElementPtrInst::isStructSelector() const {
|
|
||||||
return ((PointerType*)Operands[0]->getType())->getElementType()->isStructType();
|
|
||||||
}
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user