diff options
author | Daniel Dunbar <daniel@zuster.org> | 2009-03-19 08:27:24 +0000 |
---|---|---|
committer | Daniel Dunbar <daniel@zuster.org> | 2009-03-19 08:27:24 +0000 |
commit | 4e004ed124bb2a85d285c38bcd44aa4b5ee20e7c (patch) | |
tree | dcd88cd8ead1241dacde44dc6511ec2a3ad71554 /clang/lib/CodeGen/CodeGenModule.h | |
parent | 8d6ab2afa6a1927d5eedcf930198b3508263d89b (diff) | |
download | bcm5719-llvm-4e004ed124bb2a85d285c38bcd44aa4b5ee20e7c.tar.gz bcm5719-llvm-4e004ed124bb2a85d285c38bcd44aa4b5ee20e7c.zip |
IRgen support for alias of global variable.
- PR3818.
llvm-svn: 67297
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 c3a84af0c5b..12c103ba62c 100644 --- a/clang/lib/CodeGen/CodeGenModule.h +++ b/clang/lib/CodeGen/CodeGenModule.h @@ -109,7 +109,7 @@ class CodeGenModule : public BlockModule { /// Aliases - List of aliases in module. These cannot be emitted until all the /// code has been seen, as they reference things by name instead of directly /// and may reference forward. - std::vector<const FunctionDecl*> Aliases; + std::vector<const ValueDecl*> Aliases; /// DeferredDecls - List of decls for which code generation has been /// deferred. When the translation unit has been fully processed we |