aboutsummaryrefslogtreecommitdiffstats
path: root/lib/Target/Alpha/AlphaTargetAsmInfo.cpp
blob: 0abdce9c3b040619c5a6c294bbdba3a8b506d89d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
//===-- AlphaTargetAsmInfo.cpp - Alpha asm properties -----------*- C++ -*-===//
//
//                     The LLVM Compiler Infrastructure
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
//
// This file contains the declarations of the AlphaTargetAsmInfo properties.
//
//===----------------------------------------------------------------------===//

#include "AlphaTargetAsmInfo.h"
using namespace llvm;

AlphaTargetAsmInfo::AlphaTargetAsmInfo() {
  AlignmentIsInBytes = false;
  PrivateGlobalPrefix = "$";
  JumpTableDirective = ".gprel32";
  WeakRefDirective = "\t.weak\t";
}