mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-01 16:33:37 +01:00
0e324a205e
2. Re-adding .mask and .frame directives in printed assembly. 3. Adding .ent and .end directives in printed assembly. 4. Minor cleanups to MBlaze backend. llvm-svn: 120095
23 lines
755 B
C++
23 lines
755 B
C++
//===-- 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;
|
|
|
|
MBlazeMCAsmInfo::MBlazeMCAsmInfo() {
|
|
SupportsDebugInformation = true;
|
|
AlignmentIsInBytes = false;
|
|
PrivateGlobalPrefix = "$";
|
|
GPRel32Directive = "\t.gpword\t";
|
|
}
|