summaryrefslogtreecommitdiffstats
path: root/llvm/lib/Target/PowerPC/PPCTargetAsmInfo.h
diff options
context:
space:
mode:
Diffstat (limited to 'llvm/lib/Target/PowerPC/PPCTargetAsmInfo.h')
-rw-r--r--llvm/lib/Target/PowerPC/PPCTargetAsmInfo.h10
1 files changed, 9 insertions, 1 deletions
diff --git a/llvm/lib/Target/PowerPC/PPCTargetAsmInfo.h b/llvm/lib/Target/PowerPC/PPCTargetAsmInfo.h
index ed8574c40d6..6a680e2e44c 100644
--- a/llvm/lib/Target/PowerPC/PPCTargetAsmInfo.h
+++ b/llvm/lib/Target/PowerPC/PPCTargetAsmInfo.h
@@ -20,11 +20,19 @@ namespace llvm {
// Forward declaration.
class PPCTargetMachine;
+
+ struct PPCTargetAsmInfo : public TargetAsmInfo {
+ PPCTargetAsmInfo(const PPCTargetMachine &TM);
+ };
- struct DarwinTargetAsmInfo : public TargetAsmInfo {
+ struct DarwinTargetAsmInfo : public PPCTargetAsmInfo {
DarwinTargetAsmInfo(const PPCTargetMachine &TM);
};
+ struct LinuxTargetAsmInfo : public PPCTargetAsmInfo {
+ LinuxTargetAsmInfo(const PPCTargetMachine &TM);
+ };
+
} // namespace llvm
#endif
OpenPOWER on IntegriCloud