OpenASIP  2.0
TCEMCAsmInfo.cc
Go to the documentation of this file.
1 //===------ TCEMCAsmInfo.cpp - TCE asm properties -------------------------===//
2 //
3 // The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 //
10 // This file contains the declarations of the TCEMCAsmInfo properties.
11 //
12 //===----------------------------------------------------------------------===//
13 
14 #include <cstdlib> // NULL
15 #include "TCEMCAsmInfo.hh"
16 #include "tce_config.h"
17 
18 using namespace llvm;
19 
20 TCEMCAsmInfo::TCEMCAsmInfo(const llvm::Triple&, const llvm::MCTargetOptions&) {
21  AlignmentIsInBytes = true;
22  COMMDirectiveAlignmentIsInBytes = true;
23 
24  //COMMDirectiveTakesAlignment = true;
25  Data8bitsDirective = "DA 1\t";
26  Data16bitsDirective = NULL;
27  Data32bitsDirective = NULL;
28  Data64bitsDirective = NULL;
29  CommentString = ";";
30 }
llvm
Definition: InlineAsmParser.hh:49
TCEMCAsmInfo.hh
llvm::TCEMCAsmInfo::TCEMCAsmInfo
TCEMCAsmInfo(const llvm::Triple &, const llvm::MCTargetOptions &)
Definition: TCEMCAsmInfo.cc:20