f05e3736d8
Review URL: https://chromiumcodereview.appspot.com//10664004 git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@9071 260f80e4-7a28-3924-810f-c04153c831b5
30 lines
597 B
C++
30 lines
597 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/globals.h"
|
|
|
|
#if defined(TARGET_ARCH_IA32)
|
|
|
|
#include "vm/cpu.h"
|
|
|
|
#include "vm/constants_ia32.h"
|
|
#include "vm/heap.h"
|
|
#include "vm/isolate.h"
|
|
#include "vm/object.h"
|
|
|
|
namespace dart {
|
|
|
|
void CPU::FlushICache(uword start, uword size) {
|
|
// Nothing to be done here.
|
|
}
|
|
|
|
|
|
const char* CPU::Id() {
|
|
return "ia32";
|
|
}
|
|
|
|
} // namespace dart
|
|
|
|
#endif // defined TARGET_ARCH_IA32
|