4c0f559d23
git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@15 260f80e4-7a28-3924-810f-c04153c831b5
17 lines
479 B
C++
17 lines
479 B
C++
// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
|
|
// for details. All rights reserved. Use of this source code is governed by a
|
|
// BSD-style license that can be found in the LICENSE file.
|
|
|
|
#include "vm/store_buffer.h"
|
|
|
|
#include "vm/assert.h"
|
|
|
|
namespace dart {
|
|
|
|
void StoreBufferBlock::ProcessBuffer() {
|
|
// TODO(iposva): Do the right thing for store buffer overflow.
|
|
top_ = 0; // Currently just reset back to the beginning.
|
|
}
|
|
|
|
} // namespace dart
|