Get rid of __Monicelli_main and directly call main()
This commit is contained in:
parent
be60adb510
commit
8656d5c761
|
@ -18,7 +18,6 @@
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "Nodes.hpp"
|
#include "Nodes.hpp"
|
||||||
#include "RuntimePrototypes.hpp"
|
|
||||||
#include <string>
|
#include <string>
|
||||||
|
|
||||||
using namespace monicelli;
|
using namespace monicelli;
|
||||||
|
@ -27,7 +26,7 @@ Function *monicelli::makeMain(PointerList<Statement> *body) {
|
||||||
PointerList<FunArg> *noargs = new PointerList<FunArg>();
|
PointerList<FunArg> *noargs = new PointerList<FunArg>();
|
||||||
|
|
||||||
FunctionPrototype *proto = new FunctionPrototype(
|
FunctionPrototype *proto = new FunctionPrototype(
|
||||||
new Id(new std::string(ENTRYPOINT_NAME)), Type::VOID, noargs
|
new Id("main"), Type::VOID, noargs
|
||||||
);
|
);
|
||||||
|
|
||||||
return new Function(proto, body);
|
return new Function(proto, body);
|
||||||
|
|
Reference in New Issue
Block a user