remove all but one reference to TargetRegisterDesc::AsmName.
[llvm/avr.git] / lib / Target / SystemZ / SystemZMCAsmInfo.cpp
blob8ea11c95b27da54c755d17689253ff5ac72f21c7
1 //===-- SystemZMCAsmInfo.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 SystemZMCAsmInfo properties.
12 //===----------------------------------------------------------------------===//
14 #include "SystemZMCAsmInfo.h"
15 using namespace llvm;
17 SystemZMCAsmInfo::SystemZMCAsmInfo(const Target &T, const StringRef &TT) {
18 AlignmentIsInBytes = true;
20 PrivateGlobalPrefix = ".L";
21 WeakRefDirective = "\t.weak\t";
22 SetDirective = "\t.set\t";
23 PCSymbol = ".";
25 NonexecutableStackDirective = "\t.section\t.note.GNU-stack,\"\",@progbits";