freebsd-dev/lib/Target/Alpha/AlphaMCAsmInfo.cpp

24 lines
772 B
C++
Raw Normal View History

2009-10-14 17:57:32 +00:00
//===-- AlphaMCAsmInfo.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 AlphaMCAsmInfo properties.
//
//===----------------------------------------------------------------------===//
#include "AlphaMCAsmInfo.h"
using namespace llvm;
2010-07-15 17:06:11 +00:00
AlphaMCAsmInfo::AlphaMCAsmInfo(const Target &T, StringRef TT) {
2009-10-14 17:57:32 +00:00
AlignmentIsInBytes = false;
PrivateGlobalPrefix = "$";
2010-02-16 09:30:23 +00:00
GPRel32Directive = ".gprel32";
2009-10-14 17:57:32 +00:00
WeakRefDirective = "\t.weak\t";
2010-02-16 09:30:23 +00:00
HasSetDirective = false;
2009-10-14 17:57:32 +00:00
}