Finally get rid of virtual inheritance in TAI

llvm-svn: 56589
This commit is contained in:
Anton Korobeynikov 2008-09-24 22:23:17 +00:00
parent 3097c10347
commit 2d59db7ae4
2 changed files with 2 additions and 2 deletions

View File

@ -24,7 +24,7 @@ namespace llvm {
class Type;
class Mangler;
struct DarwinTargetAsmInfo: public virtual TargetAsmInfo {
struct DarwinTargetAsmInfo: public TargetAsmInfo {
const Section* TextCoalSection;
const Section* ConstDataCoalSection;
const Section* ConstDataSection;

View File

@ -23,7 +23,7 @@ namespace llvm {
class GlobalVariable;
class Type;
struct ELFTargetAsmInfo: public virtual TargetAsmInfo {
struct ELFTargetAsmInfo: public TargetAsmInfo {
explicit ELFTargetAsmInfo(const TargetMachine &TM);
virtual const Section* SelectSectionForGlobal(const GlobalValue *GV) const;