silence a vc2010 warning: " result of 32-bit shift implicitly converted to
[oota-llvm.git] / lib / Target / SystemZ / SystemZMCAsmInfo.cpp
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.
11 //
12 //===----------------------------------------------------------------------===//
13
14 #include "SystemZMCAsmInfo.h"
15 #include "llvm/MC/MCContext.h"
16 #include "llvm/MC/MCSectionELF.h"
17 using namespace llvm;
18
19 SystemZMCAsmInfo::SystemZMCAsmInfo(const Target &T, StringRef TT) {
20   PrivateGlobalPrefix = ".L";
21   WeakRefDirective = "\t.weak\t";
22   PCSymbol = ".";
23 }
24
25 const MCSection *SystemZMCAsmInfo::
26 getNonexecutableStackSection(MCContext &Ctx) const{
27   return Ctx.getELFSection(".note.GNU-stack", MCSectionELF::SHT_PROGBITS,
28                            0, SectionKind::getMetadata(), false);
29 }