diff options
author | Philip Reames <listmail@philipreames.com> | 2015-01-15 19:39:17 +0000 |
---|---|---|
committer | Philip Reames <listmail@philipreames.com> | 2015-01-15 19:39:17 +0000 |
commit | b87144160e37c51224c19e6b3479bd4bb624e982 (patch) | |
tree | 537b6cf51701cb9ba7b010c3a9998cd1e5bb29f3 /llvm/lib/CodeGen/GCStrategy.cpp | |
parent | f27f3738951fba6ac4df6bb0a1acb4497e4bdd7b (diff) | |
download | bcm5719-llvm-b87144160e37c51224c19e6b3479bd4bb624e982.tar.gz bcm5719-llvm-b87144160e37c51224c19e6b3479bd4bb624e982.zip |
clang-format GCStrategy.cpp & GCRootLowering.cpp (NFC)
llvm-svn: 226196
Diffstat (limited to 'llvm/lib/CodeGen/GCStrategy.cpp')
-rw-r--r-- | llvm/lib/CodeGen/GCStrategy.cpp | 14 |
1 files changed, 4 insertions, 10 deletions
diff --git a/llvm/lib/CodeGen/GCStrategy.cpp b/llvm/lib/CodeGen/GCStrategy.cpp index 982402b8ce3..05db8c44a5d 100644 --- a/llvm/lib/CodeGen/GCStrategy.cpp +++ b/llvm/lib/CodeGen/GCStrategy.cpp @@ -16,13 +16,7 @@ using namespace llvm; -GCStrategy::GCStrategy() : - UseStatepoints(false), - NeededSafePoints(0), - CustomReadBarriers(false), - CustomWriteBarriers(false), - CustomRoots(false), - CustomSafePoints(false), - InitRoots(true), - UsesMetadata(false) -{} +GCStrategy::GCStrategy() + : UseStatepoints(false), NeededSafePoints(0), CustomReadBarriers(false), + CustomWriteBarriers(false), CustomRoots(false), CustomSafePoints(false), + InitRoots(true), UsesMetadata(false) {} |