Added new line for "removeRegFromLong not supproted" message in icode.h.

This commit is contained in:
Vladimir Kryvian 2016-04-23 21:56:57 +03:00 committed by nemerle
parent 3bb72987a6
commit d77927c608

View File

@ -162,9 +162,9 @@ struct CallType : public HlTypeSupport
void placeStkArg(Expr *exp, int pos); void placeStkArg(Expr *exp, int pos);
virtual Expr * toAst(); virtual Expr * toAst();
public: public:
bool removeRegFromLong(eReg /*regi*/, LOCAL_ID */*locId*/) bool removeRegFromLong(eReg /*regi*/, LOCAL_ID * /*locId*/)
{ {
printf("CallType : removeRegFromLong not supproted"); printf("CallType : removeRegFromLong not supproted\n");
return false; return false;
} }
QString writeOut(Function *pProc, int *numLoc) const; QString writeOut(Function *pProc, int *numLoc) const;