mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-23 19:23:23 +01:00
use a more efficient check for 'is metadata'
llvm-svn: 134599
This commit is contained in:
parent
2b47bfeaa9
commit
a52824b79e
@ -44,9 +44,9 @@ class BitcodeReaderValueList {
|
||||
/// number that holds the resolved value.
|
||||
typedef std::vector<std::pair<Constant*, unsigned> > ResolveConstantsTy;
|
||||
ResolveConstantsTy ResolveConstants;
|
||||
LLVMContext& Context;
|
||||
LLVMContext &Context;
|
||||
public:
|
||||
BitcodeReaderValueList(LLVMContext& C) : Context(C) {}
|
||||
BitcodeReaderValueList(LLVMContext &C) : Context(C) {}
|
||||
~BitcodeReaderValueList() {
|
||||
assert(ResolveConstants.empty() && "Constants not resolved?");
|
||||
}
|
||||
@ -212,10 +212,9 @@ public:
|
||||
private:
|
||||
const Type *getTypeByID(unsigned ID, bool isTypeTable = false);
|
||||
Value *getFnValueByID(unsigned ID, const Type *Ty) {
|
||||
if (Ty == Type::getMetadataTy(Context))
|
||||
if (Ty->isMetadataTy())
|
||||
return MDValueList.getValueFwdRef(ID);
|
||||
else
|
||||
return ValueList.getValueFwdRef(ID, Ty);
|
||||
return ValueList.getValueFwdRef(ID, Ty);
|
||||
}
|
||||
BasicBlock *getBasicBlock(unsigned ID) const {
|
||||
if (ID >= FunctionBBs.size()) return 0; // Invalid ID
|
||||
|
Loading…
Reference in New Issue
Block a user