Files
sdk/runtime/vm/cpu_ia32.cc
T

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