Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1891)

Side by Side Diff: include/llvm/MC/MCDirectives.h

Issue 3551007: ARM MC .s EmitStartOfAsm proof-of-concept cleanup (Closed) Base URL: https://llvm.org/svn/llvm-project/llvm/trunk/
Patch Set: Created 10 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | lib/MC/MCAsmStreamer.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
OLDNEW
« no previous file with comments | « no previous file | lib/MC/MCAsmStreamer.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698