Fix a compile error caught by bb-chapuni.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@186554 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/lib/CodeGen/CGDebugInfo.cpp b/lib/CodeGen/CGDebugInfo.cpp
index 35b917f..58bd163 100644
--- a/lib/CodeGen/CGDebugInfo.cpp
+++ b/lib/CodeGen/CGDebugInfo.cpp
@@ -77,7 +77,7 @@
     DI->CurLoc = SourceLocation();
     // Construct a location that has a valid scope, but no line info.
     llvm::MDNode *Scope = DI->LexicalBlockStack.empty() ?
-      DI->TheCU : DI->LexicalBlockStack.back();
+      DI->TheCU() : DI->LexicalBlockStack.back();
     Builder.SetCurrentDebugLocation(llvm::DebugLoc::get(0, 0, Scope));
   }
 }