diff options
Diffstat (limited to 'courgette/adjustment_method.cc')
-rw-r--r-- | courgette/adjustment_method.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/courgette/adjustment_method.cc b/courgette/adjustment_method.cc index 4f16944..5e9e6d2 100644 --- a/courgette/adjustment_method.cc +++ b/courgette/adjustment_method.cc @@ -595,7 +595,7 @@ class GraphAdjuster : public AdjustmentMethod { void CollectTraces(const AssemblyProgram* program, Trace* abs32, Trace* rel32, bool is_model) { - const std::vector<Instruction*>& instructions = program->instructions(); + const InstructionVector& instructions = program->instructions(); for (size_t i = 0; i < instructions.size(); ++i) { Instruction* instruction = instructions.at(i); if (Label* label = program->InstructionAbs32Label(instruction)) |