Update of /cvsroot/compbench/CompBenchmarks++/libcompbenchmarks/Compiler/Compiler-TCC
In directory sc8-pr-cvs4.sourceforge.net:/tmp/cvs-serv22304
Modified Files:
Compiler-TCC.cpp Compiler-TCC.h
Log Message:
Changes in CBM::Compiler method names.
Index: Compiler-TCC.h
===================================================================
RCS file: /cvsroot/compbench/CompBenchmarks++/libcompbenchmarks/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 22 Jan 2007 18:24:21 -0000 1.1
--- Compiler-TCC.h 6 Feb 2007 19:42:03 -0000 1.2
***************
*** 22,26 ****
virtual std::string getCompilerName(void);
virtual std::string getCompilerVersion(void);
! virtual char *language(void);
public:
--- 22,26 ----
virtual std::string getCompilerName(void);
virtual std::string getCompilerVersion(void);
! virtual char *Language(void);
public:
Index: Compiler-TCC.cpp
===================================================================
RCS file: /cvsroot/compbench/CompBenchmarks++/libcompbenchmarks/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 22 Jan 2007 18:24:21 -0000 1.1
--- Compiler-TCC.cpp 6 Feb 2007 19:42:03 -0000 1.2
***************
*** 44,48 ****
}
! char *CompilerTCC::language(void)
{
return("C");
--- 44,48 ----
}
! char *CompilerTCC::Language(void)
{
return("C");
|