Change test function to check that asm is updated

This commit is contained in:
Daniel Donenfeld 2019-02-12 20:00:52 -08:00
parent 1fa2557c6e
commit 3e157dc419

View File

@ -48,6 +48,9 @@ bool foo()
span<const int> cs;
ret = ret || (cs.size() == 0 && cs.data() == nullptr);
span<int> s2{};
ret = ret || (s2.size() == 0 && s2.data() == nullptr);
return ret;
}
}