LLVM API Documentation

MCAsmInfoELF.cpp
Go to the documentation of this file.
00001 //===-- MCAsmInfoELF.cpp - ELF asm properties -------------------*- C++ -*-===//
00002 //
00003 //                     The LLVM Compiler Infrastructure
00004 //
00005 // This file is distributed under the University of Illinois Open Source
00006 // License. See LICENSE.TXT for details.
00007 //
00008 //===----------------------------------------------------------------------===//
00009 //
00010 // This file defines target asm properties related what form asm statements
00011 // should take in general on ELF-based targets
00012 //
00013 //===----------------------------------------------------------------------===//
00014 
00015 #include "llvm/MC/MCAsmInfoELF.h"
00016 using namespace llvm;
00017 
00018 void MCAsmInfoELF::anchor() { }
00019 
00020 MCAsmInfoELF::MCAsmInfoELF() {
00021   HasIdentDirective = true;
00022   WeakRefDirective = "\t.weak\t";
00023   PrivateGlobalPrefix = ".L";
00024 }