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

Unified Diff: test/cctest/test-simulator-arm.cc

Issue 2720133004: Revert "Revert of [Atomics] Implement ldaxr/stlxr instructions in ARM64 simulator (patchset #8 id:1… (Closed)
Patch Set: fix compile issue Created 3 years, 10 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 | « test/cctest/cctest.gyp ('k') | test/cctest/test-simulator-arm64.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/cctest/test-simulator-arm.cc
diff --git a/test/cctest/test-simulator-arm.cc b/test/cctest/test-simulator-arm.cc
index a34837665e3c041faa5066e9cf58780c15e56569..ba192c386abac99c28444d10861f3fc599d22a16 100644
--- a/test/cctest/test-simulator-arm.cc
+++ b/test/cctest/test-simulator-arm.cc
@@ -67,10 +67,10 @@ struct MemoryAccess {
MemoryAccess(Kind kind, Size size, size_t offset, int value = 0)
: kind(kind), size(size), offset(offset), value(value) {}
- Kind kind;
- Size size;
- size_t offset;
- int value;
+ Kind kind = Kind::None;
+ Size size = Size::Byte;
+ size_t offset = 0;
+ int value = 0;
};
struct TestData {
« no previous file with comments | « test/cctest/cctest.gyp ('k') | test/cctest/test-simulator-arm64.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698