mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-09-27 16:17:17 +00:00
remove progname which is never set. PR4085
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@70453 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -94,7 +94,6 @@ namespace {
|
|||||||
/// CppWriter - This class is the main chunk of code that converts an LLVM
|
/// CppWriter - This class is the main chunk of code that converts an LLVM
|
||||||
/// module to a C++ translation unit.
|
/// module to a C++ translation unit.
|
||||||
class CppWriter : public ModulePass {
|
class CppWriter : public ModulePass {
|
||||||
const char* progname;
|
|
||||||
raw_ostream &Out;
|
raw_ostream &Out;
|
||||||
const Module *TheModule;
|
const Module *TheModule;
|
||||||
uint64_t uniqueNum;
|
uint64_t uniqueNum;
|
||||||
@@ -218,7 +217,7 @@ namespace {
|
|||||||
}
|
}
|
||||||
|
|
||||||
void CppWriter::error(const std::string& msg) {
|
void CppWriter::error(const std::string& msg) {
|
||||||
cerr << progname << ": " << msg << "\n";
|
cerr << msg << "\n";
|
||||||
exit(2);
|
exit(2);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user