Anton Korobeynikov | 4403b93 | 2009-07-16 13:27:25 +0000 | [diff] [blame] | 1 | //===-- SystemZTargetAsmInfo.cpp - SystemZ asm properties -----------------===// |
| 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 | // |
| 10 | // This file contains the declarations of the SystemZTargetAsmInfo properties. |
| 11 | // |
| 12 | //===----------------------------------------------------------------------===// |
| 13 | |
| 14 | #include "SystemZTargetAsmInfo.h" |
Anton Korobeynikov | 4403b93 | 2009-07-16 13:27:25 +0000 | [diff] [blame] | 15 | using namespace llvm; |
| 16 | |
Chris Lattner | a7ac47c | 2009-08-12 07:22:17 +0000 | [diff] [blame^] | 17 | SystemZTargetAsmInfo::SystemZTargetAsmInfo(const Target &T, |
| 18 | const StringRef &TT) { |
Anton Korobeynikov | 70f717f | 2009-07-16 14:04:22 +0000 | [diff] [blame] | 19 | AlignmentIsInBytes = true; |
| 20 | |
Anton Korobeynikov | 70f717f | 2009-07-16 14:04:22 +0000 | [diff] [blame] | 21 | PrivateGlobalPrefix = ".L"; |
| 22 | WeakRefDirective = "\t.weak\t"; |
| 23 | SetDirective = "\t.set\t"; |
| 24 | PCSymbol = "."; |
| 25 | |
| 26 | NonexecutableStackDirective = "\t.section\t.note.GNU-stack,\"\",@progbits"; |
Anton Korobeynikov | 4403b93 | 2009-07-16 13:27:25 +0000 | [diff] [blame] | 27 | } |