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.cpp | |
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.cpp')
-rw-r--r-- | llvm/lib/Target/SystemZ/SystemZTargetAsmInfo.cpp | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/llvm/lib/Target/SystemZ/SystemZTargetAsmInfo.cpp b/llvm/lib/Target/SystemZ/SystemZTargetAsmInfo.cpp new file mode 100644 index 00000000000..c841a0e4930 --- /dev/null +++ b/llvm/lib/Target/SystemZ/SystemZTargetAsmInfo.cpp @@ -0,0 +1,22 @@ +//===-- SystemZTargetAsmInfo.cpp - SystemZ asm properties -----------------===// +// +// 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 declarations of the SystemZTargetAsmInfo properties. +// +//===----------------------------------------------------------------------===// + +#include "SystemZTargetAsmInfo.h" +#include "SystemZTargetMachine.h" + +using namespace llvm; + +SystemZTargetAsmInfo::SystemZTargetAsmInfo(const SystemZTargetMachine &TM) + : ELFTargetAsmInfo(TM) { + AlignmentIsInBytes = false; +} |