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

Unified Diff: src/machine-type.h

Issue 2092103004: [Turbofan] Add Simd128 registers to RegisterConfiguration. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Add simd128 mask. Created 4 years, 6 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
Index: src/machine-type.h
diff --git a/src/machine-type.h b/src/machine-type.h
index 08786100b05c2ceaf88001c48ce871fc26499da8..efaf9e340dac2ae7881b9fbeecb6fb34b2abe648 100644
--- a/src/machine-type.h
+++ b/src/machine-type.h
@@ -23,8 +23,8 @@ enum class MachineRepresentation : uint8_t {
kWord32,
kWord64,
kFloat32,
- kFloat64,
- kSimd128,
+ kFloat64, // must follow kFloat32
+ kSimd128, // must follow kFloat64
kTagged
};

Powered by Google App Engine
This is Rietveld 408576698