aboutsummaryrefslogtreecommitdiffstats
path: root/include/llvm/MC/MCDirectives.h
diff options
context:
space:
mode:
authorJim Grosbach <grosbach@apple.com>2010-11-05 22:08:08 +0000
committerJim Grosbach <grosbach@apple.com>2010-11-05 22:08:08 +0000
commitce79299f78bb04e76e1860ab119b85d69f3a19c7 (patch)
tree850049ad93016348b01a92c183b071e3070c6592 /include/llvm/MC/MCDirectives.h
parent36fa3ea566c66b42e4dd7b4394be2f1e071647b8 (diff)
downloadexternal_llvm-ce79299f78bb04e76e1860ab119b85d69f3a19c7.tar.gz
external_llvm-ce79299f78bb04e76e1860ab119b85d69f3a19c7.tar.bz2
external_llvm-ce79299f78bb04e76e1860ab119b85d69f3a19c7.zip
MC'ize the '.code 16' and '.thumb_func' ARM directives.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@118301 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/MC/MCDirectives.h')
-rw-r--r--include/llvm/MC/MCDirectives.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/include/llvm/MC/MCDirectives.h b/include/llvm/MC/MCDirectives.h
index 982f25acd0..e4e023dc71 100644
--- a/include/llvm/MC/MCDirectives.h
+++ b/include/llvm/MC/MCDirectives.h
@@ -44,7 +44,8 @@ enum MCSymbolAttr {
enum MCAssemblerFlag {
MCAF_SyntaxUnified, ///< .syntax (ARM/ELF)
- MCAF_SubsectionsViaSymbols ///< .subsections_via_symbols (MachO)
+ MCAF_SubsectionsViaSymbols, ///< .subsections_via_symbols (MachO)
+ MCAF_Code16 ///< .code 16
};
} // end namespace llvm