Chris Lattner | 621c44d | 2009-08-22 20:48:53 +0000 | [diff] [blame] | 1 | //===-- AlphaMCAsmInfo.cpp - Alpha asm properties ---------------*- C++ -*-===// |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 2 | // |
| 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
Chris Lattner | 081ce94 | 2007-12-29 20:36:04 +0000 | [diff] [blame] | 5 | // This file is distributed under the University of Illinois Open Source |
| 6 | // License. See LICENSE.TXT for details. |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 7 | // |
| 8 | //===----------------------------------------------------------------------===// |
| 9 | // |
Chris Lattner | 621c44d | 2009-08-22 20:48:53 +0000 | [diff] [blame] | 10 | // This file contains the declarations of the AlphaMCAsmInfo properties. |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 11 | // |
| 12 | //===----------------------------------------------------------------------===// |
| 13 | |
Chris Lattner | 621c44d | 2009-08-22 20:48:53 +0000 | [diff] [blame] | 14 | #include "AlphaMCAsmInfo.h" |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 15 | using namespace llvm; |
| 16 | |
Chris Lattner | a918216 | 2010-01-19 22:42:28 +0000 | [diff] [blame] | 17 | AlphaMCAsmInfo::AlphaMCAsmInfo(const Target &T, const StringRef &TT) |
| 18 | : MCAsmInfo(true) { |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 19 | AlignmentIsInBytes = false; |
| 20 | PrivateGlobalPrefix = "$"; |
Chris Lattner | df97304 | 2009-08-11 20:30:58 +0000 | [diff] [blame] | 21 | PICJumpTableDirective = ".gprel32"; |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 22 | WeakRefDirective = "\t.weak\t"; |
| 23 | } |