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

Side by Side Diff: runtime/vm/store_buffer.cc

Issue 9189003: Move assert.h/assert.cc from runtime/vm to runtime/platform (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Fixing vm/assert.h for _macos, _win, _arm and _x64 files Created 8 years, 11 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
2 // for details. All rights reserved. Use of this source code is governed by a 2 // for details. All rights reserved. Use of this source code is governed by a
3 // BSD-style license that can be found in the LICENSE file. 3 // BSD-style license that can be found in the LICENSE file.
4 4
5 #include "platform/assert.h"
5 #include "vm/store_buffer.h" 6 #include "vm/store_buffer.h"
Mads Ager (chromium) 2012/01/13 14:42:08 Here as well.
Søren Gjesse 2012/01/16 08:58:00 Done.
6 7
7 #include "vm/assert.h"
8
9 namespace dart { 8 namespace dart {
10 9
11 void StoreBufferBlock::ProcessBuffer() { 10 void StoreBufferBlock::ProcessBuffer() {
12 // TODO(iposva): Do the right thing for store buffer overflow. 11 // TODO(iposva): Do the right thing for store buffer overflow.
13 top_ = 0; // Currently just reset back to the beginning. 12 top_ = 0; // Currently just reset back to the beginning.
14 } 13 }
15 14
16 } // namespace dart 15 } // namespace dart
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698