2009-08-22 20:48:53 +00:00
|
|
|
//===-- BlackfinMCAsmInfo.cpp - Blackfin asm properties -------------------===//
|
2009-05-03 12:57:15 +00:00
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
2009-08-22 20:48:53 +00:00
|
|
|
// This file contains the declarations of the BlackfinMCAsmInfo properties.
|
2009-05-03 12:57:15 +00:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2009-08-22 20:48:53 +00:00
|
|
|
#include "BlackfinMCAsmInfo.h"
|
|
|
|
|
2009-05-03 12:57:15 +00:00
|
|
|
using namespace llvm;
|
|
|
|
|
2010-01-20 06:34:14 +00:00
|
|
|
BlackfinMCAsmInfo::BlackfinMCAsmInfo(const Target &T, const StringRef &TT) {
|
2009-08-22 20:48:53 +00:00
|
|
|
GlobalPrefix = "_";
|
|
|
|
CommentString = "//";
|
2010-01-26 20:40:54 +00:00
|
|
|
HasSetDirective = false;
|
2009-05-03 12:57:15 +00:00
|
|
|
}
|