aboutsummaryrefslogtreecommitdiffstats
path: root/include/llvm/Target/TargetAsmInfo.h
diff options
context:
space:
mode:
authorAnton Korobeynikov <asl@math.spbu.ru>2008-07-09 13:25:26 +0000
committerAnton Korobeynikov <asl@math.spbu.ru>2008-07-09 13:25:26 +0000
commit03db6776a286b0533d743b890a5740b20d483139 (patch)
tree774bf163d22c376270df209b1421f3192c8b36a8 /include/llvm/Target/TargetAsmInfo.h
parenta3d07de1352dc6b3b919e9e07de7d822b344eb73 (diff)
downloadexternal_llvm-03db6776a286b0533d743b890a5740b20d483139.zip
external_llvm-03db6776a286b0533d743b890a5740b20d483139.tar.gz
external_llvm-03db6776a286b0533d743b890a5740b20d483139.tar.bz2
Add hacky way to distinguish named and named sections. This will be generalized in the future.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@53311 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/Target/TargetAsmInfo.h')
-rw-r--r--include/llvm/Target/TargetAsmInfo.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/include/llvm/Target/TargetAsmInfo.h b/include/llvm/Target/TargetAsmInfo.h
index 8d2861f..0c946da 100644
--- a/include/llvm/Target/TargetAsmInfo.h
+++ b/include/llvm/Target/TargetAsmInfo.h
@@ -53,6 +53,7 @@ namespace llvm {
TLS = 1 << 5, ///< Section contains thread-local data
Debug = 1 << 6, ///< Section contains debug data
Linkonce = 1 << 7, ///< Section is linkonce
+ Named = 1 << 8, ///< Section is named
// Some gap for future flags
EntitySize = 0xFF << 24 ///< Entity size for mergeable sections
};