pass LangOptions into TargetInfo::getTargetDefines, so that targets
can have language-specific defines.


git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@67375 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/lib/Lex/Preprocessor.cpp b/lib/Lex/Preprocessor.cpp
index 3afa4ee..b06050f 100644
--- a/lib/Lex/Preprocessor.cpp
+++ b/lib/Lex/Preprocessor.cpp
@@ -641,7 +641,7 @@
   DefineBuiltinMacro(Buf, MacroBuf);
   
   // Get other target #defines.
-  TI.getTargetDefines(Buf);
+  TI.getTargetDefines(PP.getLangOptions(), Buf);
   
   // FIXME: Should emit a #line directive here.
 }