diff options
author | Chris Lattner <sabre@nondot.org> | 2009-03-21 08:03:33 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2009-03-21 08:03:33 +0000 |
commit | 99b53613ebe2c59d41030e987962c1ed101b2efe (patch) | |
tree | 85d1dd1bb7f52b785c6d7b39c130ce1bcfbb4aa8 /lib/CodeGen/CodeGenModule.h | |
parent | e21c4b829c9e69c20f4baab4916e05cdb786d9ae (diff) |
simplify some more code.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@67439 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/CodeGenModule.h')
-rw-r--r-- | lib/CodeGen/CodeGenModule.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/CodeGen/CodeGenModule.h b/lib/CodeGen/CodeGenModule.h index a2cb442a84..0783d6521f 100644 --- a/lib/CodeGen/CodeGenModule.h +++ b/lib/CodeGen/CodeGenModule.h @@ -86,7 +86,7 @@ class CodeGenModule : public BlockModule { /// protected from introducing conflicts. These globals should be /// created unnamed, we will name them and patch up conflicts when /// we release the module. - std::vector< std::pair<llvm::GlobalValue*, std::string> > RuntimeGlobals; + std::vector<std::pair<llvm::GlobalValue*, std::string> > RuntimeGlobals; /// GlobalDeclMap - Mapping of decl names (represented as unique /// character pointers from either the identifier table or the set |