diff options
author | David Greene <greened@obbligato.org> | 2009-07-08 21:57:46 +0000 |
---|---|---|
committer | David Greene <greened@obbligato.org> | 2009-07-08 21:57:46 +0000 |
commit | 0380851130cafa4cda99e923fdc97c7a2c1eaf27 (patch) | |
tree | 4337192e75f6233ae4195ef7ac84fbd2f5c34058 /llvm | |
parent | f04d63a398d61eb36af036f644da34837e203eab (diff) | |
download | bcm5719-llvm-0380851130cafa4cda99e923fdc97c7a2c1eaf27.tar.gz bcm5719-llvm-0380851130cafa4cda99e923fdc97c7a2c1eaf27.zip |
Reformat.
llvm-svn: 75058
Diffstat (limited to 'llvm')
-rw-r--r-- | llvm/include/llvm/CodeGen/RegAllocRegistry.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/llvm/include/llvm/CodeGen/RegAllocRegistry.h b/llvm/include/llvm/CodeGen/RegAllocRegistry.h index a08e42a5d34..100e357654f 100644 --- a/llvm/include/llvm/CodeGen/RegAllocRegistry.h +++ b/llvm/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); } |