Fix part 1 of pr4682. PICADD is a 16-bit instruction even in thumb2 mode.
[llvm/avr.git] / lib / Target / SystemZ / SystemZTargetAsmInfo.cpp
blob6aff8a0d8f83ea54db519848434bca2dbd4f94f2
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 #include "SystemZTargetMachine.h"
17 using namespace llvm;
19 SystemZTargetAsmInfo::SystemZTargetAsmInfo() {
20 AlignmentIsInBytes = true;
22 PrivateGlobalPrefix = ".L";
23 WeakRefDirective = "\t.weak\t";
24 SetDirective = "\t.set\t";
25 PCSymbol = ".";
27 NonexecutableStackDirective = "\t.section\t.note.GNU-stack,\"\",@progbits";