diff options
author | Mehdi Amini <mehdi.amini@apple.com> | 2016-03-11 17:32:58 +0000 |
---|---|---|
committer | Mehdi Amini <mehdi.amini@apple.com> | 2016-03-11 17:32:58 +0000 |
commit | 7850f596e25d50eedfdc14b123f1823e0a5c230d (patch) | |
tree | 502fb5b8148f06f52c18fac56a51e962ac78a358 | |
parent | 7b2164ffe0e5ee0d6f8251065c20c6b92710b2ad (diff) | |
download | bcm5719-llvm-7850f596e25d50eedfdc14b123f1823e0a5c230d.tar.gz bcm5719-llvm-7850f596e25d50eedfdc14b123f1823e0a5c230d.zip |
Fix build: use -> with pointers and not .
Silly typo.
From: Mehdi Amini <mehdi.amini@apple.com>
llvm-svn: 263267
-rw-r--r-- | clang/lib/CodeGen/CodeGenAction.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/lib/CodeGen/CodeGenAction.cpp b/clang/lib/CodeGen/CodeGenAction.cpp index 0b76581d64b..67945cdb901 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 } |