blob: 0a56a6e950cfc03d830bd262f8b7e9e399fe435c [file] [log] [blame]
Sanjiv Gupta0e687712008-05-13 09:02:57 +00001//===-- PIC16TargetAsmInfo.cpp - PIC16 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 PIC16TargetAsmInfo properties.
11//
12//===----------------------------------------------------------------------===//
13
14#include "PIC16TargetAsmInfo.h"
15
16using namespace llvm;
17
18PIC16TargetAsmInfo::
19PIC16TargetAsmInfo(const PIC16TargetMachine &TM)
20{
21 Data16bitsDirective = "\t.half\t";
22 Data32bitsDirective = "\t.word\t";
23 CommentString = ";";
24 COMMDirective = "\t";
25 COMMDirectiveTakesAlignment = 0;
26}