Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(415)

Unified Diff: courgette/adjustment_method_2.cc

Issue 6597038: Implementation of an STL compatible allocator for Courgette on Windows.... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 9 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: courgette/adjustment_method_2.cc
===================================================================
--- courgette/adjustment_method_2.cc (revision 76195)
+++ courgette/adjustment_method_2.cc (working copy)
@@ -1252,7 +1252,7 @@
void CollectTraces(const AssemblyProgram* program, Trace* abs32, Trace* rel32,
bool is_model) {
label_info_maker_.ResetDebugLabel();
- 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))

Powered by Google App Engine
This is Rietveld 408576698