Fix string-at-start-of chunk bug. Thanks, @tinebp!

This commit is contained in:
cdkersey 2015-11-24 09:19:09 -07:00
parent 0397e6545a
commit 8e51332932

View file

@ -295,6 +295,7 @@ Obj *AsmReader::read(std::istream &input) {
o->chunks.push_back(dc);
if (entry) o->entry = o->chunks.size() - 1;
if (global) dc->setGlobal();
chunkCreated = true;
}
const char *s = yylval.s.c_str();
do {