diff options
author | Owen Anderson <resistor@mac.com> | 2009-07-01 23:14:14 +0000 |
---|---|---|
committer | Owen Anderson <resistor@mac.com> | 2009-07-01 23:14:14 +0000 |
commit | 8f1ca78009ca1bdb66903c51b9bbaa81f58ea72a (patch) | |
tree | 5304e31c9eb5be13676781c0eefe44975035b5d1 /lib/Frontend/Backend.cpp | |
parent | cca9e9674a5e50a283185d8e9d8a5c3414eb008e (diff) |
Update for changes in LLVM. Hopefully this is the last one for a while.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@74657 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Frontend/Backend.cpp')
-rw-r--r-- | lib/Frontend/Backend.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/Frontend/Backend.cpp b/lib/Frontend/Backend.cpp index 6b7f9ae940..1c536b07ce 100644 --- a/lib/Frontend/Backend.cpp +++ b/lib/Frontend/Backend.cpp @@ -76,7 +76,7 @@ namespace { BackendConsumer(BackendAction action, Diagnostic &Diags, const LangOptions &langopts, const CompileOptions &compopts, const std::string &infile, llvm::raw_ostream* OS, - const LLVMContext& C) : + LLVMContext& C) : Action(action), CompileOpts(compopts), AsmOutStream(OS), @@ -361,7 +361,7 @@ ASTConsumer *clang::CreateBackendConsumer(BackendAction Action, const CompileOptions &CompileOpts, const std::string& InFile, llvm::raw_ostream* OS, - const LLVMContext& C) { + LLVMContext& C) { return new BackendConsumer(Action, Diags, LangOpts, CompileOpts, InFile, OS, C); } |