diff options
author | Chris Lattner <sabre@nondot.org> | 2007-07-14 00:16:50 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2007-07-14 00:16:50 +0000 |
commit | 6ee31f5df844f0fd52db01605742afbe552cdf1b (patch) | |
tree | 39431865abd8bcc4858c52b371b12b27b9b463dd /clang/CodeGen/CodeGenModule.h | |
parent | 027f21dd72af5a76a6112501ada3eb4435e65f92 (diff) | |
download | bcm5719-llvm-6ee31f5df844f0fd52db01605742afbe552cdf1b.tar.gz bcm5719-llvm-6ee31f5df844f0fd52db01605742afbe552cdf1b.zip |
In "int X,Y;", compile both X and Y.
llvm-svn: 39848
Diffstat (limited to 'clang/CodeGen/CodeGenModule.h')
-rw-r--r-- | clang/CodeGen/CodeGenModule.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/clang/CodeGen/CodeGenModule.h b/clang/CodeGen/CodeGenModule.h index 9d8547030ec..fbebdcfcf57 100644 --- a/clang/CodeGen/CodeGenModule.h +++ b/clang/CodeGen/CodeGenModule.h @@ -53,6 +53,7 @@ public: void EmitFunction(const FunctionDecl *FD); void EmitGlobalVar(const FileVarDecl *D); + void EmitGlobalVarDeclarator(const FileVarDecl *D); void PrintStats() {} }; |