diff options
author | Chris Lattner <sabre@nondot.org> | 2010-03-12 20:47:28 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2010-03-12 20:47:28 +0000 |
commit | b87c305fa77650ee581d4a8c65a0757f88002441 (patch) | |
tree | f226d1a01ab356fc4872fb40d069d8e1d32929a1 /lib/Target/CBackend | |
parent | 3f185a72cd558ad8836ebd6f779f032c97835c03 (diff) |
give Mangler access to TargetData.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@98378 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/CBackend')
-rw-r--r-- | lib/Target/CBackend/CBackend.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Target/CBackend/CBackend.cpp b/lib/Target/CBackend/CBackend.cpp index 6b9ae4fc0d..b1ba0d2b9f 100644 --- a/lib/Target/CBackend/CBackend.cpp +++ b/lib/Target/CBackend/CBackend.cpp @@ -1734,7 +1734,7 @@ bool CWriter::doInitialization(Module &M) { #endif TAsm = new CBEMCAsmInfo(); TCtx = new MCContext(*TAsm); - Mang = new Mangler(*TCtx); + Mang = new Mangler(*TCtx, *TD); // Keep track of which functions are static ctors/dtors so they can have // an attribute added to their prototypes. |