blob: 91dcbe3e058996a024c16e1354f6c9729f9faefb [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"
Dan Gohman8f092252008-11-03 18:22:42 +000015#include "PIC16TargetMachine.h"
Sanjiv Gupta0e687712008-05-13 09:02:57 +000016
17using namespace llvm;
18
19PIC16TargetAsmInfo::
Dan Gohman8f092252008-11-03 18:22:42 +000020PIC16TargetAsmInfo(const PIC16TargetMachine &TM)
21 : TargetAsmInfo(TM) {
Sanjiv Gupta0e687712008-05-13 09:02:57 +000022 Data16bitsDirective = "\t.half\t";
23 Data32bitsDirective = "\t.word\t";
24 CommentString = ";";
25 COMMDirective = "\t";
26 COMMDirectiveTakesAlignment = 0;
27}