aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Greene <greened@obbligato.org>2009-07-08 21:57:46 +0000
committerDavid Greene <greened@obbligato.org>2009-07-08 21:57:46 +0000
commite41dec60fa1ad6a46ec46c848ae1a8f2f7497e12 (patch)
tree03666f53b00952cb1a7a0a9c72922a5f375c2b0e
parent2214c94bb70524ff3150c6763c2f9ac0c1bb844b (diff)
Reformat.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@75058 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--include/llvm/CodeGen/RegAllocRegistry.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/include/llvm/CodeGen/RegAllocRegistry.h b/include/llvm/CodeGen/RegAllocRegistry.h
index a08e42a5d3..100e357654 100644
--- a/include/llvm/CodeGen/RegAllocRegistry.h
+++ b/include/llvm/CodeGen/RegAllocRegistry.h
@@ -34,7 +34,9 @@ public:
RegisterRegAlloc(const char *N, const char *D, FunctionPassCtor C)
: MachinePassRegistryNode(N, D, (MachinePassCtor)C)
- { Registry.Add(this); }
+ {
+ Registry.Add(this);
+ }
~RegisterRegAlloc() { Registry.Remove(this); }