summaryrefslogtreecommitdiff
path: root/include/llvm/CodeGen/GCStrategy.h
diff options
context:
space:
mode:
authorDmitri Gribenko <gribozavr@gmail.com>2012-06-09 00:01:45 +0000
committerDmitri Gribenko <gribozavr@gmail.com>2012-06-09 00:01:45 +0000
commit77592fe39c404f3c48b06fae48b965058b3a5ee8 (patch)
treefe935ce9b28d5f47da60e6dca757fcdf993988ca /include/llvm/CodeGen/GCStrategy.h
parentdddc1cf50b6dfe543f617426ac4eab55fbbdfecd (diff)
downloadllvm-77592fe39c404f3c48b06fae48b965058b3a5ee8.tar.gz
llvm-77592fe39c404f3c48b06fae48b965058b3a5ee8.tar.bz2
llvm-77592fe39c404f3c48b06fae48b965058b3a5ee8.tar.xz
Convert comments to proper Doxygen comments.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@158248 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/CodeGen/GCStrategy.h')
-rw-r--r--include/llvm/CodeGen/GCStrategy.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/include/llvm/CodeGen/GCStrategy.h b/include/llvm/CodeGen/GCStrategy.h
index 1cbd36abfb..dfc26d72dc 100644
--- a/include/llvm/CodeGen/GCStrategy.h
+++ b/include/llvm/CodeGen/GCStrategy.h
@@ -65,14 +65,14 @@ namespace llvm {
list_type Functions;
protected:
- unsigned NeededSafePoints; //< Bitmask of required safe points.
- bool CustomReadBarriers; //< Default is to insert loads.
- bool CustomWriteBarriers; //< Default is to insert stores.
- bool CustomRoots; //< Default is to pass through to backend.
- bool CustomSafePoints; //< Default is to use NeededSafePoints
- // to find safe points.
- bool InitRoots; //< If set, roots are nulled during lowering.
- bool UsesMetadata; //< If set, backend must emit metadata tables.
+ unsigned NeededSafePoints; ///< Bitmask of required safe points.
+ bool CustomReadBarriers; ///< Default is to insert loads.
+ bool CustomWriteBarriers; ///< Default is to insert stores.
+ bool CustomRoots; ///< Default is to pass through to backend.
+ bool CustomSafePoints; ///< Default is to use NeededSafePoints
+ ///< to find safe points.
+ bool InitRoots; ///< If set, roots are nulled during lowering.
+ bool UsesMetadata; ///< If set, backend must emit metadata tables.
public:
GCStrategy();