blob: c5356f0e23a84b4c1a1724daece87b6258087495 [file] [log] [blame]
Chris Lattneraf76e592009-08-22 20:48:53 +00001//===-- MipsMCAsmInfo.cpp - Mips asm properties ---------------------------===//
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +00002//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner4ee451d2007-12-29 20:36:04 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +00007//
8//===----------------------------------------------------------------------===//
9//
Chris Lattneraf76e592009-08-22 20:48:53 +000010// This file contains the declarations of the MipsMCAsmInfo properties.
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +000011//
12//===----------------------------------------------------------------------===//
13
Chris Lattneraf76e592009-08-22 20:48:53 +000014#include "MipsMCAsmInfo.h"
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +000015using namespace llvm;
16
Chris Lattner8eeba352010-01-20 06:34:14 +000017MipsMCAsmInfo::MipsMCAsmInfo(const Target &T, const StringRef &TT) {
Bruno Cardoso Lopes43d526d2008-07-14 14:42:54 +000018 AlignmentIsInBytes = false;
Bruno Cardoso Lopes43d526d2008-07-14 14:42:54 +000019 Data16bitsDirective = "\t.half\t";
20 Data32bitsDirective = "\t.word\t";
Benjamin Kramerecf046b2009-08-22 22:07:08 +000021 Data64bitsDirective = 0;
Bruno Cardoso Lopes43d526d2008-07-14 14:42:54 +000022 PrivateGlobalPrefix = "$";
Bruno Cardoso Lopes43d526d2008-07-14 14:42:54 +000023 CommentString = "#";
Bruno Cardoso Lopes43d526d2008-07-14 14:42:54 +000024 ZeroDirective = "\t.space\t";
Chris Lattner78f485a2010-01-25 21:10:10 +000025 GPRel32Directive = "\t.gpword\t";
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +000026}