Chris Lattner | 621c44d | 2009-08-22 20:48:53 +0000 | [diff] [blame] | 1 | //===-- SystemZMCAsmInfo.cpp - SystemZ asm properties ---------------------===// |
Anton Korobeynikov | 32b7d5b | 2009-07-16 13:27:25 +0000 | [diff] [blame] | 2 | // |
| 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
| 5 | // This file is distributed under the University of Illinois Open Source |
| 6 | // License. See LICENSE.TXT for details. |
| 7 | // |
| 8 | //===----------------------------------------------------------------------===// |
| 9 | // |
Chris Lattner | 621c44d | 2009-08-22 20:48:53 +0000 | [diff] [blame] | 10 | // This file contains the declarations of the SystemZMCAsmInfo properties. |
Anton Korobeynikov | 32b7d5b | 2009-07-16 13:27:25 +0000 | [diff] [blame] | 11 | // |
| 12 | //===----------------------------------------------------------------------===// |
| 13 | |
Chris Lattner | 621c44d | 2009-08-22 20:48:53 +0000 | [diff] [blame] | 14 | #include "SystemZMCAsmInfo.h" |
Anton Korobeynikov | 32b7d5b | 2009-07-16 13:27:25 +0000 | [diff] [blame] | 15 | using namespace llvm; |
| 16 | |
Chris Lattner | 50f82ef | 2010-01-20 06:34:14 +0000 | [diff] [blame^] | 17 | SystemZMCAsmInfo::SystemZMCAsmInfo(const Target &T, const StringRef &TT) { |
Anton Korobeynikov | fafa2de | 2009-07-16 14:04:22 +0000 | [diff] [blame] | 18 | AlignmentIsInBytes = true; |
| 19 | |
Anton Korobeynikov | fafa2de | 2009-07-16 14:04:22 +0000 | [diff] [blame] | 20 | PrivateGlobalPrefix = ".L"; |
| 21 | WeakRefDirective = "\t.weak\t"; |
| 22 | SetDirective = "\t.set\t"; |
| 23 | PCSymbol = "."; |
| 24 | |
| 25 | NonexecutableStackDirective = "\t.section\t.note.GNU-stack,\"\",@progbits"; |
Anton Korobeynikov | 32b7d5b | 2009-07-16 13:27:25 +0000 | [diff] [blame] | 26 | } |