diff options
author | John McCall <rjmccall@apple.com> | 2011-04-12 00:42:48 +0000 |
---|---|---|
committer | John McCall <rjmccall@apple.com> | 2011-04-12 00:42:48 +0000 |
commit | 2979fe01da2c6bfc116192c865ae89da713e9f63 (patch) | |
tree | dd30f95158a9fce830cb0b01973e342fa2b55b14 /clang/lib/CodeGen/CodeGenModule.h | |
parent | 11168326f8efe9a7af670045ca5d278b3a284121 (diff) | |
download | llvm-2979fe01da2c6bfc116192c865ae89da713e9f63.zip llvm-2979fe01da2c6bfc116192c865ae89da713e9f63.tar.gz llvm-2979fe01da2c6bfc116192c865ae89da713e9f63.tar.bz2 |
After some discussion with Doug, we decided that it made a lot more sense
for __unknown_anytype resolution to destructively modify the AST. So that's
what it does now, which significantly simplifies some of the implementation.
Normal member calls work pretty cleanly now, and I added support for
propagating unknown-ness through &.
llvm-svn: 129331
Diffstat (limited to 'clang/lib/CodeGen/CodeGenModule.h')
-rw-r--r-- | clang/lib/CodeGen/CodeGenModule.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/clang/lib/CodeGen/CodeGenModule.h b/clang/lib/CodeGen/CodeGenModule.h index b29437d..99c973c 100644 --- a/clang/lib/CodeGen/CodeGenModule.h +++ b/clang/lib/CodeGen/CodeGenModule.h @@ -358,7 +358,6 @@ public: llvm::Constant *GetAddrOfGlobalVar(const VarDecl *D, const llvm::Type *Ty = 0); - llvm::Constant *getAddrOfUnknownAnyDecl(const NamedDecl *D, QualType type); /// GetAddrOfFunction - Return the address of the given function. If Ty is /// non-null, then this function will use the specified type if it has to |