blob: 25877f8da8bf736a34cb2887e2cbe7d89f0a74b9 [file] [log] [blame]
Anton Korobeynikov4403b932009-07-16 13:27:25 +00001//===-- 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.
11//
12//===----------------------------------------------------------------------===//
13
14#include "SystemZTargetAsmInfo.h"
15#include "SystemZTargetMachine.h"
16
17using namespace llvm;
18
Chris Lattner8d4a0a32009-08-02 04:27:24 +000019SystemZTargetAsmInfo::SystemZTargetAsmInfo(const SystemZTargetMachine &TM) {
Anton Korobeynikov70f717f2009-07-16 14:04:22 +000020 AlignmentIsInBytes = true;
21
Anton Korobeynikov70f717f2009-07-16 14:04:22 +000022 PrivateGlobalPrefix = ".L";
23 WeakRefDirective = "\t.weak\t";
24 SetDirective = "\t.set\t";
25 PCSymbol = ".";
26
27 NonexecutableStackDirective = "\t.section\t.note.GNU-stack,\"\",@progbits";
Anton Korobeynikov4403b932009-07-16 13:27:25 +000028}