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

Unified Diff: courgette/adjustment_method.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
« no previous file with comments | « no previous file | courgette/adjustment_method_2.cc » ('j') | courgette/memory_allocator.h » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: courgette/adjustment_method.cc
===================================================================
--- courgette/adjustment_method.cc (revision 76195)
+++ courgette/adjustment_method.cc (working copy)
@@ -595,7 +595,7 @@
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))
« no previous file with comments | « no previous file | courgette/adjustment_method_2.cc » ('j') | courgette/memory_allocator.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698