Fixed floating point support in assembler.

This commit is contained in:
cdkersey
2013-10-07 17:49:00 -04:00
parent 0e0aa64e74
commit 021f08e180
2 changed files with 6 additions and 6 deletions

View File

@@ -94,9 +94,9 @@ static uint64_t readParenExpression(const string &s, const map<string, Word> &d,
exit(1);
}
int lexerBytes;
int lexerFloatBytes;
Obj *AsmReader::read(std::istream &input) {
lexerBytes = wordSize;
lexerFloatBytes = wordSize;
FlexLexer *f = new yyFlexLexer(&input);
Obj *o = new Obj();
std::vector<Chunk>::reverse_iterator cur;