2010-02-23 20:15:24 +01:00
|
|
|
//===-- MBlazeMCAsmInfo.cpp - MBlaze asm properties -----------------------===//
|
|
|
|
//
|
|
|
|
// 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 MBlazeMCAsmInfo properties.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#include "MBlazeMCAsmInfo.h"
|
|
|
|
using namespace llvm;
|
|
|
|
|
2010-10-27 02:23:01 +02:00
|
|
|
MBlazeMCAsmInfo::MBlazeMCAsmInfo() {
|
2010-11-24 16:39:32 +01:00
|
|
|
SupportsDebugInformation = true;
|
2010-02-23 20:15:24 +01:00
|
|
|
AlignmentIsInBytes = false;
|
|
|
|
PrivateGlobalPrefix = "$";
|
|
|
|
GPRel32Directive = "\t.gpword\t";
|
|
|
|
}
|