Nicolas Winkler преди 6 години
родител
ревизия
0f8308250c
променени са 1 файла, в които са добавени 0 реда и са изтрити 2 реда
  1. 0 2
      src/sem/CodeGeneration.cpp

+ 0 - 2
src/sem/CodeGeneration.cpp

@@ -178,11 +178,9 @@ llvm::Function* generateFunction(llvm::Module* module, sem::Method* method)
         throw "invalid return type";
     std::string symbolName;
     if (method->isExtern) {
-        Printer::getInstance() << method->name << " is extern" << std::endl;
         symbolName = qlow::getExternalSymbol(method->name);
     }
     else {
-        Printer::getInstance() << method->name << " is not extern" << std::endl;
         symbolName = method->name;
     }
     Function* func = Function::Create(funcType, Function::ExternalLinkage, symbolName, module);