summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAnton Korobeynikov <asl@math.spbu.ru>2008-09-24 22:23:17 +0000
committerAnton Korobeynikov <asl@math.spbu.ru>2008-09-24 22:23:17 +0000
commit2d59db7ae401c4686476671afcceb54312b4133e (patch)
tree91db67e07a1409f4a2470c08d6a7549a7ff2bffd
parent3097c103477a97c922eb69c3b46f44b8a6f77920 (diff)
downloadbcm5719-llvm-2d59db7ae401c4686476671afcceb54312b4133e.tar.gz
bcm5719-llvm-2d59db7ae401c4686476671afcceb54312b4133e.zip
Finally get rid of virtual inheritance in TAI
llvm-svn: 56589
-rw-r--r--llvm/include/llvm/Target/DarwinTargetAsmInfo.h2
-rw-r--r--llvm/include/llvm/Target/ELFTargetAsmInfo.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/llvm/include/llvm/Target/DarwinTargetAsmInfo.h b/llvm/include/llvm/Target/DarwinTargetAsmInfo.h
index 0ca5a705556..dab591aa036 100644
--- a/llvm/include/llvm/Target/DarwinTargetAsmInfo.h
+++ b/llvm/include/llvm/Target/DarwinTargetAsmInfo.h
@@ -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;
diff --git a/llvm/include/llvm/Target/ELFTargetAsmInfo.h b/llvm/include/llvm/Target/ELFTargetAsmInfo.h
index 3dacb33eb32..593d9b14f87 100644
--- a/llvm/include/llvm/Target/ELFTargetAsmInfo.h
+++ b/llvm/include/llvm/Target/ELFTargetAsmInfo.h
@@ -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;
OpenPOWER on IntegriCloud