Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(188)

Unified Diff: src/ffi/ffi-compiler.h

Issue 2639163004: [ffi] Translation + test for int32 (Closed)
Patch Set: Arm fixes Created 3 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | src/ffi/ffi-compiler.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/ffi/ffi-compiler.h
diff --git a/src/ffi/ffi-compiler.h b/src/ffi/ffi-compiler.h
index b612db1c6b2421501cf2ad465db848f6a6fd96fb..2825f4f0af08dc70bb5ec665aa61a18e3d346d32 100644
--- a/src/ffi/ffi-compiler.h
+++ b/src/ffi/ffi-compiler.h
@@ -18,7 +18,9 @@ void InstallFFIMap(Isolate* isolate);
namespace ffi {
-typedef Signature<MachineType> FFISignature;
+enum class FFIType : uint8_t { kInt32 };
+
+typedef Signature<FFIType> FFISignature;
struct NativeFunction {
FFISignature* sig;
« no previous file with comments | « no previous file | src/ffi/ffi-compiler.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698