Change allowsUnalignedMemoryAccesses to take type argument since some targets
[llvm/avr.git] / lib / Target / SystemZ / SystemZTargetAsmInfo.cpp
blobfc102124ba4ea18ed96ca2e5a1482fd446d6f0c6
1 //===-- SystemZTargetAsmInfo.cpp - SystemZ asm properties -----------------===//
2 //
3 // The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 //
10 // This file contains the declarations of the SystemZTargetAsmInfo properties.
12 //===----------------------------------------------------------------------===//
14 #include "SystemZTargetAsmInfo.h"
15 using namespace llvm;
17 SystemZTargetAsmInfo::SystemZTargetAsmInfo(const Target &T,
18 const StringRef &TT) {
19 AlignmentIsInBytes = true;
21 PrivateGlobalPrefix = ".L";
22 WeakRefDirective = "\t.weak\t";
23 SetDirective = "\t.set\t";
24 PCSymbol = ".";
26 NonexecutableStackDirective = "\t.section\t.note.GNU-stack,\"\",@progbits";