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

Unified Diff: src/IceRegistersARM32.h

Issue 1655313002: Subzero: ARM32: lowering of vector insert and extract. (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: Created 4 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
Index: src/IceRegistersARM32.h
diff --git a/src/IceRegistersARM32.h b/src/IceRegistersARM32.h
index 94f45c137557cb8b03329330ccb0ae547ca1ea76..079898472768d61faf7612da9a020e3c6ee73b08 100644
--- a/src/IceRegistersARM32.h
+++ b/src/IceRegistersARM32.h
@@ -220,7 +220,11 @@ static inline IceString getRegName(int32_t RegNum) {
}
// Extend enum RegClass with ARM32-specific register classes (if any).
Jim Stichnoth 2016/02/03 15:28:37 I guess the "(if any)" comment can be dropped.
Eric Holk 2016/02/03 21:02:21 Done.
-enum RegClassARM32 : uint8_t { RCARM32_NUM = RC_Target };
+enum RegClassARM32 : uint8_t {
+ RCARM32_QtoS = RC_Target, // Denotes Q registers that are aliased by S
+ // registers.
+ RCARM32_NUM
+};
} // end of namespace RegARM32
} // end of namespace ARM32

Powered by Google App Engine
This is Rietveld 408576698