diff options
author | Chris Lattner <sabre@nondot.org> | 2010-07-29 02:01:43 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2010-07-29 02:01:43 +0000 |
commit | 2b037972220c759c418ae347563b700e49b8fb0b (patch) | |
tree | bbab20dd4bbdd0a9f0b6267413e09b838e9cc225 /clang/lib/CodeGen/CodeGenModule.h | |
parent | 9789f81eb43832dc9929f43879a831e3ec6e4f0e (diff) | |
download | llvm-2b037972220c759c418ae347563b700e49b8fb0b.zip llvm-2b037972220c759c418ae347563b700e49b8fb0b.tar.gz llvm-2b037972220c759c418ae347563b700e49b8fb0b.tar.bz2 |
cave in to reality and make ABIInfo depend on CodeGenTypes.
This will simplify a bunch of code, coming up next.
llvm-svn: 109722
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 420900a..5b750386 100644 --- a/clang/lib/CodeGen/CodeGenModule.h +++ b/clang/lib/CodeGen/CodeGenModule.h @@ -260,7 +260,7 @@ public: Diagnostic &getDiags() const { return Diags; } const llvm::TargetData &getTargetData() const { return TheTargetData; } llvm::LLVMContext &getLLVMContext() { return VMContext; } - const TargetCodeGenInfo &getTargetCodeGenInfo() const; + const TargetCodeGenInfo &getTargetCodeGenInfo(); bool isTargetDarwin() const; /// getDeclVisibilityMode - Compute the visibility of the decl \arg D. |