1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-27 22:12:47 +01:00
llvm-mirror/lib/Target/Blackfin/BlackfinMCAsmInfo.cpp

23 lines
705 B
C++
Raw Normal View History

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