Use %ull here.
[llvm/stm8.git] / lib / Target / SystemZ / SystemZMCAsmInfo.cpp
blob2dc7e7bd29bb577cf0269d1f65c63ff1851f3da8
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 #include "llvm/MC/MCContext.h"
16 #include "llvm/MC/MCSectionELF.h"
17 #include "llvm/Support/ELF.h"
18 using namespace llvm;
20 SystemZMCAsmInfo::SystemZMCAsmInfo(const Target &T, StringRef TT) {
21 PrivateGlobalPrefix = ".L";
22 WeakRefDirective = "\t.weak\t";
23 PCSymbol = ".";
26 const MCSection *SystemZMCAsmInfo::
27 getNonexecutableStackSection(MCContext &Ctx) const{
28 return Ctx.getELFSection(".note.GNU-stack", ELF::SHT_PROGBITS,
29 0, SectionKind::getMetadata());