[fuchsia] re-introduce pstate temporarily

https://fuchsia.googlesource.com/garnet/+/master/bin/zxdb/client/minidump_remote_api.cc#127
still depends on pstate and we cannot run CQ for hard transitions in Fuchsia yet

Change-Id: Iea2bfc670871a8fe3f389cc54627733e6069ecbe
Reviewed-on: https://chromium-review.googlesource.com/c/1318067
Reviewed-by: Scott Graham <scottmg@chromium.org>
Commit-Queue: Francois Rousseau <frousseau@google.com>
This commit is contained in:
Francois Rousseau 2018-11-05 14:56:19 -08:00 committed by Commit Bot
parent a9be1b1403
commit 7f71c57a29

View File

@ -299,7 +299,12 @@ struct CPUContextARM64 {
uint64_t regs[31];
uint64_t sp;
uint64_t pc;
uint32_t spsr;
// TODO(frousseau): remove pstate once clients have transitioned to spsr,
// notably zxdb in Fuchsia.
union {
uint32_t spsr;
uint64_t pstate;
};
uint128_struct fpsimd[32];
uint32_t fpsr;