2009-08-22 22:48:53 +02:00
|
|
|
//===-- AlphaMCAsmInfo.cpp - Alpha asm properties ---------------*- C++ -*-===//
|
2006-09-08 00:05:02 +02:00
|
|
|
//
|
|
|
|
// 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
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
2009-08-22 22:48:53 +02:00
|
|
|
// This file contains the declarations of the AlphaMCAsmInfo properties.
|
2006-09-08 00:05:02 +02:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2009-08-22 22:48:53 +02:00
|
|
|
#include "AlphaMCAsmInfo.h"
|
2006-09-08 00:05:02 +02:00
|
|
|
using namespace llvm;
|
|
|
|
|
2010-07-15 00:38:02 +02:00
|
|
|
AlphaMCAsmInfo::AlphaMCAsmInfo(const Target &T, StringRef TT) {
|
2006-09-08 00:05:02 +02:00
|
|
|
AlignmentIsInBytes = false;
|
|
|
|
PrivateGlobalPrefix = "$";
|
2010-01-25 22:10:10 +01:00
|
|
|
GPRel32Directive = ".gprel32";
|
2006-12-08 00:55:55 +01:00
|
|
|
WeakRefDirective = "\t.weak\t";
|
2010-01-26 21:40:54 +01:00
|
|
|
HasSetDirective = false;
|
2006-09-08 00:05:02 +02:00
|
|
|
}
|