2009-08-22 20:48:53 +00:00
|
|
|
//===-- MipsMCAsmInfo.cpp - Mips asm properties ---------------------------===//
|
2007-06-06 07:42:06 +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.
|
2007-06-06 07:42:06 +00:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
2009-08-22 20:48:53 +00:00
|
|
|
// This file contains the declarations of the MipsMCAsmInfo properties.
|
2007-06-06 07:42:06 +00:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2009-08-22 20:48:53 +00:00
|
|
|
#include "MipsMCAsmInfo.h"
|
2007-06-06 07:42:06 +00:00
|
|
|
using namespace llvm;
|
|
|
|
|
2009-08-22 20:48:53 +00:00
|
|
|
MipsMCAsmInfo::MipsMCAsmInfo(const Target &T, const StringRef &TT) {
|
2008-07-14 14:42:54 +00:00
|
|
|
AlignmentIsInBytes = false;
|
|
|
|
COMMDirectiveTakesAlignment = true;
|
|
|
|
Data16bitsDirective = "\t.half\t";
|
|
|
|
Data32bitsDirective = "\t.word\t";
|
2009-08-22 22:07:08 +00:00
|
|
|
Data64bitsDirective = 0;
|
2008-07-14 14:42:54 +00:00
|
|
|
PrivateGlobalPrefix = "$";
|
|
|
|
CommentString = "#";
|
|
|
|
ZeroDirective = "\t.space\t";
|
2009-08-11 20:30:58 +00:00
|
|
|
PICJumpTableDirective = "\t.gpword\t";
|
2007-06-06 07:42:06 +00:00
|
|
|
}
|