| Index: runtime/vm/flow_graph_compiler.h
|
| diff --git a/runtime/vm/flow_graph_compiler.h b/runtime/vm/flow_graph_compiler.h
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..98503fcdebf170f6b8dc015174df02a1f7c80b25
|
| --- /dev/null
|
| +++ b/runtime/vm/flow_graph_compiler.h
|
| @@ -0,0 +1,14 @@
|
| +// Copyright (c) 2012, 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.
|
| +
|
| +#ifndef VM_FLOW_GRAPH_COMPILER_H_
|
| +#define VM_FLOW_GRAPH_COMPILER_H_
|
| +
|
| +#if defined(TARGET_ARCH_X64)
|
| +#include "vm/flow_graph_compiler_x64.h"
|
| +#elif !defined(TARGET_ARCH_IA32) && !defined(TARGET_ARCH_ARM)
|
| +#error Unknown architecture.
|
| +#endif
|
| +
|
| +#endif // VM_FLOW_GRAPH_COMPILER_H_
|
|
|