| OLD | NEW |
| 1 //===- MCDirectives.h - Enums for directives on various targets -*- C++ -*-===// | 1 //===- MCDirectives.h - Enums for directives on various targets -*- C++ -*-===// |
| 2 // | 2 // |
| 3 // The LLVM Compiler Infrastructure | 3 // The LLVM Compiler Infrastructure |
| 4 // | 4 // |
| 5 // This file is distributed under the University of Illinois Open Source | 5 // This file is distributed under the University of Illinois Open Source |
| 6 // License. See LICENSE.TXT for details. | 6 // License. See LICENSE.TXT for details. |
| 7 // | 7 // |
| 8 //===----------------------------------------------------------------------===// | 8 //===----------------------------------------------------------------------===// |
| 9 // | 9 // |
| 10 // This file defines various enums that represent target-specific directives. | 10 // This file defines various enums that represent target-specific directives. |
| (...skipping 25 matching lines...) Expand all Loading... |
| 36 MCSA_PrivateExtern, ///< .private_extern (MachO) | 36 MCSA_PrivateExtern, ///< .private_extern (MachO) |
| 37 MCSA_Protected, ///< .protected (ELF) | 37 MCSA_Protected, ///< .protected (ELF) |
| 38 MCSA_Reference, ///< .reference (MachO) | 38 MCSA_Reference, ///< .reference (MachO) |
| 39 MCSA_Weak, ///< .weak | 39 MCSA_Weak, ///< .weak |
| 40 MCSA_WeakDefinition, ///< .weak_definition (MachO) | 40 MCSA_WeakDefinition, ///< .weak_definition (MachO) |
| 41 MCSA_WeakReference, ///< .weak_reference (MachO) | 41 MCSA_WeakReference, ///< .weak_reference (MachO) |
| 42 MCSA_WeakDefAutoPrivate ///< .weak_def_can_be_hidden (MachO) | 42 MCSA_WeakDefAutoPrivate ///< .weak_def_can_be_hidden (MachO) |
| 43 }; | 43 }; |
| 44 | 44 |
| 45 enum MCAssemblerFlag { | 45 enum MCAssemblerFlag { |
| 46 MCAF_SyntaxUnified, ///< .syntax (ARM/ELF) |
| 46 MCAF_SubsectionsViaSymbols ///< .subsections_via_symbols (MachO) | 47 MCAF_SubsectionsViaSymbols ///< .subsections_via_symbols (MachO) |
| 47 }; | 48 }; |
| 48 | 49 |
| 49 } // end namespace llvm | 50 } // end namespace llvm |
| 50 | 51 |
| 51 #endif | 52 #endif |
| OLD | NEW |