diff options
author | Benjamin Kramer <benny.kra@googlemail.com> | 2013-04-26 21:32:52 +0000 |
---|---|---|
committer | Benjamin Kramer <benny.kra@googlemail.com> | 2013-04-26 21:32:52 +0000 |
commit | 139cfc2e63ddb83a6e9ab668ea806597057f47a2 (patch) | |
tree | f8130022c727c7ec46936cd61c2b56d350bd7530 /clang/lib/CodeGen/CodeGenFunction.h | |
parent | 55a9c97c9ced81e6eb5ef326edade2463752c749 (diff) | |
download | bcm5719-llvm-139cfc2e63ddb83a6e9ab668ea806597057f47a2.tar.gz bcm5719-llvm-139cfc2e63ddb83a6e9ab668ea806597057f47a2.zip |
ArrayRefize code. No functionality change.
llvm-svn: 180632
Diffstat (limited to 'clang/lib/CodeGen/CodeGenFunction.h')
-rw-r--r-- | clang/lib/CodeGen/CodeGenFunction.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/clang/lib/CodeGen/CodeGenFunction.h b/clang/lib/CodeGen/CodeGenFunction.h index f0c2c1e6725..727a3be54b0 100644 --- a/clang/lib/CodeGen/CodeGenFunction.h +++ b/clang/lib/CodeGen/CodeGenFunction.h @@ -2668,8 +2668,7 @@ public: /// GenerateCXXGlobalInitFunc - Generates code for initializing global /// variables. void GenerateCXXGlobalInitFunc(llvm::Function *Fn, - llvm::Constant **Decls, - unsigned NumDecls, + ArrayRef<llvm::Constant *> Decls, llvm::GlobalVariable *Guard = 0); /// GenerateCXXGlobalDtorsFunc - Generates code for destroying global |