Chromium Code Reviews| Index: src/vm/ffi_macos.cc |
| diff --git a/src/vm/intrinsics.cc b/src/vm/ffi_macos.cc |
| similarity index 62% |
| copy from src/vm/intrinsics.cc |
| copy to src/vm/ffi_macos.cc |
| index 4f8013cde6f5d34f411f322fb5c234e3ec5d1feb..7ffb82b184fac582eabfcaca7a15bdec91699105 100644 |
| --- a/src/vm/intrinsics.cc |
| +++ b/src/vm/ffi_macos.cc |
| @@ -2,13 +2,11 @@ |
| // for details. All rights reserved. Use of this source code is governed by a |
| // BSD-style license that can be found in the LICENSE.md file. |
| -#include "src/vm/intrinsics.h" |
| +#include "src/vm/ffi.h" |
| namespace fletch { |
| -#define DEFINE_INTRINSIC(name) \ |
| - void Intrinsic_##name() { } |
| -INTRINSICS_DO(DEFINE_INTRINSIC) |
| -#undef DEFINE_INTRINSIC |
| +const char* ForeignLibraryConstants::kLibBundlePrefix = "foobar"; |
|
ricow1
2015/06/29 16:55:23
is probably not the right prefix, but fine for now
|
| +const char* ForeignLibraryConstants::kLibBundlePostfix = "foobar"; |
| } // namespace fletch |