diff options
author | Peter Collingbourne <peter@pcc.me.uk> | 2011-01-13 18:57:25 +0000 |
---|---|---|
committer | Peter Collingbourne <peter@pcc.me.uk> | 2011-01-13 18:57:25 +0000 |
commit | 0ff0b3762766d4e2d13a76cd9dea080195b73a5d (patch) | |
tree | 05ba8dfe749d5b6669bcebaded7354f5465f8194 /clang/lib/CodeGen/CodeGenTBAA.h | |
parent | 018778af3dac8e1930c59768bbbd2db41307fe1f (diff) | |
download | bcm5719-llvm-0ff0b3762766d4e2d13a76cd9dea080195b73a5d.tar.gz bcm5719-llvm-0ff0b3762766d4e2d13a76cd9dea080195b73a5d.zip |
Move name mangling support from CodeGen to AST. In the
process, perform a number of refactorings:
- Move MiscNameMangler member functions to MangleContext
- Remove GlobalDecl dependency from MangleContext
- Make MangleContext abstract and move Itanium/Microsoft functionality
to their own classes/files
- Implement ASTContext::createMangleContext and have CodeGen use it
No (intended) functionality change.
llvm-svn: 123386
Diffstat (limited to 'clang/lib/CodeGen/CodeGenTBAA.h')
-rw-r--r-- | clang/lib/CodeGen/CodeGenTBAA.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/lib/CodeGen/CodeGenTBAA.h b/clang/lib/CodeGen/CodeGenTBAA.h index 29f7f544d31..c4583473a0e 100644 --- a/clang/lib/CodeGen/CodeGenTBAA.h +++ b/clang/lib/CodeGen/CodeGenTBAA.h @@ -26,11 +26,11 @@ namespace llvm { namespace clang { class ASTContext; class LangOptions; + class MangleContext; class QualType; class Type; namespace CodeGen { - class MangleContext; class CGRecordLayout; /// CodeGenTBAA - This class organizes the cross-module state that is used |