diff options
author | Nico Weber <nicolasweber@gmx.de> | 2015-01-15 04:07:35 +0000 |
---|---|---|
committer | Nico Weber <nicolasweber@gmx.de> | 2015-01-15 04:07:35 +0000 |
commit | b6a5d05a8a6e9064b22987830f4ffa6b3f3d71f3 (patch) | |
tree | b7ccc1df3165160421835a40aa0d49da4fd22cfb /clang/lib/CodeGen/CodeGenModule.h | |
parent | 60534818a9d7b3d4e249a2e51af5f182dfd48434 (diff) | |
download | bcm5719-llvm-b6a5d05a8a6e9064b22987830f4ffa6b3f3d71f3.tar.gz bcm5719-llvm-b6a5d05a8a6e9064b22987830f4ffa6b3f3d71f3.zip |
Remove ASTConsumer::HandleVTable()'s bool parameter.
Sema calls HandleVTable() with a bool parameter which is then threaded through
three layers. The only effect of this bool is an early return at the last
layer.
Instead, remove this parameter and call HandleVTable() only if the bool is
true. No intended behavior change.
llvm-svn: 226096
Diffstat (limited to 'clang/lib/CodeGen/CodeGenModule.h')
-rw-r--r-- | clang/lib/CodeGen/CodeGenModule.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/lib/CodeGen/CodeGenModule.h b/clang/lib/CodeGen/CodeGenModule.h index 54f3a82feb2..ddcb414508a 100644 --- a/clang/lib/CodeGen/CodeGenModule.h +++ b/clang/lib/CodeGen/CodeGenModule.h @@ -993,7 +993,7 @@ public: void EmitTentativeDefinition(const VarDecl *D); - void EmitVTable(CXXRecordDecl *Class, bool DefinitionRequired); + void EmitVTable(CXXRecordDecl *Class); /// Emit the RTTI descriptors for the builtin types. void EmitFundamentalRTTIDescriptors(); |