Fix storage order in evmhost.

This commit is contained in:
Bhargava Shastry 2021-03-11 15:29:48 +01:00
parent 7c572dbfdf
commit 39fcdf22c3

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;
}