Fix -Wmissing-braces

Change-Id: I2394b6923c789f36e72242f4b196844cc0ee90ba


[ROCm/clr commit: 5577eabcea]
This commit is contained in:
Matt Arsenault
2020-06-30 18:10:25 -04:00
committed by Matthew Arsenault
parent e69ff5e142
commit 3cae0b7649
2 changed files with 8 additions and 4 deletions
@@ -84,10 +84,10 @@ static const uint16_t kBarrierPacketReleaseHeader =
(HSA_FENCE_SCOPE_SYSTEM << HSA_PACKET_HEADER_RELEASE_FENCE_SCOPE);
static const hsa_barrier_and_packet_t kBarrierAcquirePacket = {
kBarrierPacketAcquireHeader, 0, 0, 0, 0, 0, 0, 0, 0, 0};
kBarrierPacketAcquireHeader, 0, 0, {{0}}, 0, {0}};
static const hsa_barrier_and_packet_t kBarrierReleasePacket = {
kBarrierPacketReleaseHeader, 0, 0, 0, 0, 0, 0, 0, 0, 0};
kBarrierPacketReleaseHeader, 0, 0, {{0}}, 0, {0}};
double Timestamp::ticksToTime_ = 0;