blob: a2e15d1d9534cd903fb13141a87bcaf91f2e892c [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"
Anton Korobeynikov4403b932009-07-16 13:27:25 +000015using namespace llvm;
16
Chris Lattnere6483e32009-08-02 04:32:07 +000017SystemZTargetAsmInfo::SystemZTargetAsmInfo() {
Anton Korobeynikov70f717f2009-07-16 14:04:22 +000018 AlignmentIsInBytes = true;
19
Anton Korobeynikov70f717f2009-07-16 14:04:22 +000020 PrivateGlobalPrefix = ".L";
21 WeakRefDirective = "\t.weak\t";
22 SetDirective = "\t.set\t";
23 PCSymbol = ".";
24
25 NonexecutableStackDirective = "\t.section\t.note.GNU-stack,\"\",@progbits";
Anton Korobeynikov4403b932009-07-16 13:27:25 +000026}