From: Mehdi Amini Date: Fri, 11 Mar 2016 17:32:58 +0000 (+0000) Subject: Fix build: use -> with pointers and not . X-Git-Tag: llvmorg-3.9.0-rc1~11943 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=7850f596e25d50eedfdc14b123f1823e0a5c230d;p=platform%2Fupstream%2Fllvm.git Fix build: use -> with pointers and not . Silly typo. From: Mehdi Amini llvm-svn: 263267 --- diff --git a/clang/lib/CodeGen/CodeGenAction.cpp b/clang/lib/CodeGen/CodeGenAction.cpp index 0b76581..67945cd 100644 --- a/clang/lib/CodeGen/CodeGenAction.cpp +++ b/clang/lib/CodeGen/CodeGenAction.cpp @@ -660,7 +660,7 @@ CodeGenAction::CodeGenAction(unsigned _Act, LLVMContext *_VMContext) #ifdef NDEBUG // FIXME: change this to be controlled by a cc1 flag that the driver passes, // on the model of --disable-free - _VMContext.setDiscardValueNames(true); + _VMContext->setDiscardValueNames(true); #endif }