2006-09-07 22:05:02 +00:00
|
|
|
//===-- AlphaTargetAsmInfo.cpp - Alpha asm properties -----------*- C++ -*-===//
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
2007-12-29 20:36:04 +00:00
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
2006-09-07 22:05:02 +00:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// This file contains the declarations of the AlphaTargetAsmInfo properties.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#include "AlphaTargetAsmInfo.h"
|
|
|
|
using namespace llvm;
|
|
|
|
|
2009-08-02 04:46:05 +00:00
|
|
|
AlphaTargetAsmInfo::AlphaTargetAsmInfo() {
|
2006-09-07 22:05:02 +00:00
|
|
|
AlignmentIsInBytes = false;
|
|
|
|
PrivateGlobalPrefix = "$";
|
2006-09-24 19:46:56 +00:00
|
|
|
JumpTableDirective = ".gprel32";
|
2006-12-07 23:55:55 +00:00
|
|
|
WeakRefDirective = "\t.weak\t";
|
2006-09-07 22:05:02 +00:00
|
|
|
}
|