2013-10-16 01:34:32 +00:00
|
|
|
//===-- MCAsmInfoELF.cpp - ELF asm properties -------------------*- C++ -*-===//
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// This file defines target asm properties related what form asm statements
|
|
|
|
// should take in general on ELF-based targets
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#include "llvm/MC/MCAsmInfoELF.h"
|
|
|
|
using namespace llvm;
|
|
|
|
|
|
|
|
void MCAsmInfoELF::anchor() { }
|
|
|
|
|
|
|
|
MCAsmInfoELF::MCAsmInfoELF() {
|
|
|
|
HasIdentDirective = true;
|
|
|
|
WeakRefDirective = "\t.weak\t";
|
2013-12-02 23:39:26 +00:00
|
|
|
PrivateGlobalPrefix = ".L";
|
2013-10-16 01:34:32 +00:00
|
|
|
}
|