diff options
author | Anton Korobeynikov <asl@math.spbu.ru> | 2009-07-16 13:27:25 +0000 |
---|---|---|
committer | Anton Korobeynikov <asl@math.spbu.ru> | 2009-07-16 13:27:25 +0000 |
commit | c334c28b3b329c02f38f750bc6bcae47c36b609e (patch) | |
tree | f2e50f5fc4f197da062ff73bfeeeff2c34e61528 /llvm/lib/Target/SystemZ/SystemZTargetAsmInfo.h | |
parent | 0cceec520c6295c98b87e1b47799107a7e57e50f (diff) | |
download | bcm5719-llvm-c334c28b3b329c02f38f750bc6bcae47c36b609e.tar.gz bcm5719-llvm-c334c28b3b329c02f38f750bc6bcae47c36b609e.zip |
Let's start another backend :)
llvm-svn: 75909
Diffstat (limited to 'llvm/lib/Target/SystemZ/SystemZTargetAsmInfo.h')
-rw-r--r-- | llvm/lib/Target/SystemZ/SystemZTargetAsmInfo.h | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/llvm/lib/Target/SystemZ/SystemZTargetAsmInfo.h b/llvm/lib/Target/SystemZ/SystemZTargetAsmInfo.h new file mode 100644 index 00000000000..b0a7639eee9 --- /dev/null +++ b/llvm/lib/Target/SystemZ/SystemZTargetAsmInfo.h @@ -0,0 +1,31 @@ +//====-- SystemZTargetAsmInfo.h - SystemZ asm properties -------*- C++ -*--===// +// +// The LLVM Compiler Infrastructure +// +// This file is distributed under the University of Illinois Open Source +// License. See LICENSE.TXT for details. +// +//===----------------------------------------------------------------------===// +// +// This file contains the declaration of the SystemZTargetAsmInfo class. +// +//===----------------------------------------------------------------------===// + +#ifndef SystemZTARGETASMINFO_H +#define SystemZTARGETASMINFO_H + +#include "llvm/Target/TargetAsmInfo.h" +#include "llvm/Target/ELFTargetAsmInfo.h" + +namespace llvm { + + // Forward declaration. + class SystemZTargetMachine; + + struct SystemZTargetAsmInfo : public ELFTargetAsmInfo { + explicit SystemZTargetAsmInfo(const SystemZTargetMachine &TM); + }; + +} // namespace llvm + +#endif |