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