Update of /cvsroot/compbench/CompBenchmarks++/Compiler/Compiler-TCC
In directory sc8-pr-cvs4.sourceforge.net:/tmp/cvs-serv8477
Modified Files:
Compiler-TCC.cpp Compiler-TCC.h
Log Message:
Class name changed.
Index: Compiler-TCC.h
===================================================================
RCS file: /cvsroot/compbench/CompBenchmarks++/Compiler/Compiler-TCC/Compiler-TCC.h,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** Compiler-TCC.h 1 Nov 2006 11:19:30 -0000 1.1
--- Compiler-TCC.h 1 Nov 2006 11:31:23 -0000 1.2
***************
*** 14,18 ****
/** \brief Defines the tcc compiler
*/
! class CBMBenchmarkContextCompilerTCC : public CBMBenchmarkContextCompiler
{
private:
--- 14,18 ----
/** \brief Defines the tcc compiler
*/
! class CBMCompilerTCC : public CBMCompiler
{
private:
***************
*** 24,32 ****
public:
! CBMBenchmarkContextCompilerTCC (class CBMSystem *_system,
char *_compilerBinary);
virtual std::string compiler(void);
! virtual ~CBMBenchmarkContextCompilerTCC();
};
--- 24,32 ----
public:
! CBMCompilerTCC (class CBMSystem *_system,
char *_compilerBinary);
virtual std::string compiler(void);
! virtual ~CBMCompilerTCC();
};
Index: Compiler-TCC.cpp
===================================================================
RCS file: /cvsroot/compbench/CompBenchmarks++/Compiler/Compiler-TCC/Compiler-TCC.cpp,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** Compiler-TCC.cpp 1 Nov 2006 11:19:30 -0000 1.1
--- Compiler-TCC.cpp 1 Nov 2006 11:31:23 -0000 1.2
***************
*** 10,20 ****
#include <System/System.h>
! CBMBenchmarkContextCompilerTCC::CBMBenchmarkContextCompilerTCC(CBMSystem *_system,
char *_compilerBinary)
! : CBMBenchmarkContextCompiler(_system, _compilerBinary)
{
}
! std::string CBMBenchmarkContextCompilerTCC::compiler(void)
{
std::string str = "tcc";
--- 10,20 ----
#include <System/System.h>
! CBMCompilerTCC::CBMCompilerTCC(CBMSystem *_system,
char *_compilerBinary)
! : CBMCompiler(_system, _compilerBinary)
{
}
! std::string CBMCompilerTCC::compiler(void)
{
std::string str = "tcc";
***************
*** 23,27 ****
}
! std::string CBMBenchmarkContextCompilerTCC::getCompilerName(void)
{
std::string result = "Tiny C Compiler ";
--- 23,27 ----
}
! std::string CBMCompilerTCC::getCompilerName(void)
{
std::string result = "Tiny C Compiler ";
***************
*** 30,34 ****
}
! std::string CBMBenchmarkContextCompilerTCC::getCompilerVersion(void)
{
std::string cmd;
--- 30,34 ----
}
! std::string CBMCompilerTCC::getCompilerVersion(void)
{
std::string cmd;
***************
*** 42,51 ****
}
! char *CBMBenchmarkContextCompilerTCC::language(void)
{
return("C");
}
! CBMBenchmarkContextCompilerTCC::~CBMBenchmarkContextCompilerTCC()
{
}
--- 42,51 ----
}
! char *CBMCompilerTCC::language(void)
{
return("C");
}
! CBMCompilerTCC::~CBMCompilerTCC()
{
}
|