2006-09-08 00:05:02 +02:00
|
|
|
//===-- AlphaTargetAsmInfo.cpp - Alpha asm properties -----------*- C++ -*-===//
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
2007-12-29 21:36:04 +01:00
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
2006-09-08 00:05:02 +02:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// This file contains the declarations of the AlphaTargetAsmInfo properties.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2008-11-03 19:22:42 +01:00
|
|
|
#include "AlphaTargetMachine.h"
|
2006-09-08 00:05:02 +02:00
|
|
|
#include "AlphaTargetAsmInfo.h"
|
|
|
|
|
|
|
|
using namespace llvm;
|
|
|
|
|
2008-11-03 19:22:42 +01:00
|
|
|
AlphaTargetAsmInfo::AlphaTargetAsmInfo(const AlphaTargetMachine &TM)
|
|
|
|
: TargetAsmInfo(TM) {
|
2006-09-08 00:05:02 +02:00
|
|
|
AlignmentIsInBytes = false;
|
|
|
|
PrivateGlobalPrefix = "$";
|
2006-09-24 21:46:56 +02:00
|
|
|
JumpTableDirective = ".gprel32";
|
2006-10-07 00:52:33 +02:00
|
|
|
JumpTableDataSection = "\t.section .rodata\n";
|
2006-12-08 00:55:55 +01:00
|
|
|
WeakRefDirective = "\t.weak\t";
|
2006-09-08 00:05:02 +02:00
|
|
|
}
|