mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-06-13 22:24:07 +00:00
Use the version of getValue that takes the type plane instead of the type
if possible. This provides a consistent 8.5% speedup. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@8991 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@ -385,7 +385,8 @@ void BytecodeParser::materializeFunction(Function* F) {
|
||||
|
||||
// Resolve forward references
|
||||
while (!ForwardReferences.empty()) {
|
||||
std::map<std::pair<unsigned,unsigned>, Value*>::iterator I = ForwardReferences.begin();
|
||||
std::map<std::pair<unsigned,unsigned>, Value*>::iterator I =
|
||||
ForwardReferences.begin();
|
||||
unsigned type = I->first.first;
|
||||
unsigned Slot = I->first.second;
|
||||
Value *PlaceHolder = I->second;
|
||||
|
Reference in New Issue
Block a user