Fix storage order in evmhost.

This commit is contained in:
Bhargava Shastry
2021-06-14 13:27:12 +02:00
parent 7c572dbfdf
commit 39fcdf22c3
+3
View File
@@ -141,6 +141,9 @@ extern "C" int LLVMFuzzerTestOneInput(uint8_t const* _data, size_t _size)
ostringstream newCodeGen;
newCodeGen << pOpt.state();
cout << oldCodeGen.str() << endl;
cout << newCodeGen.str() << endl;
solAssert(oldCodeGen.str() == newCodeGen.str(), "Old and new code gen state do not match.");
return 0;
}