Apply changes to migrate to CLANG-160673-20120724.

Change-Id: Iaae5454643a2871fbfa01bcbe52924891c4357d7
diff --git a/Android.mk b/Android.mk
index 0e28e75..c7be789 100644
--- a/Android.mk
+++ b/Android.mk
@@ -59,6 +59,7 @@
 TBLGEN_TABLES :=    \
 	AttrList.inc	\
 	Attrs.inc	\
+	CommentNodes.inc \
 	DeclNodes.inc	\
 	DiagnosticCommonKinds.inc	\
 	DiagnosticFrontendKinds.inc	\
@@ -96,6 +97,7 @@
 TBLGEN_TABLES :=    \
 	AttrList.inc    \
 	Attrs.inc    \
+	CommentNodes.inc \
 	DeclNodes.inc    \
 	DiagnosticCommonKinds.inc   \
 	DiagnosticDriverKinds.inc \
diff --git a/Compiler.cpp b/Compiler.cpp
index f8bc250..6b5e0c8 100644
--- a/Compiler.cpp
+++ b/Compiler.cpp
@@ -117,7 +117,7 @@
 						    mTarget.get());
 
   llvm::OwningPtr<clang::CompilerInstance> Clang(new clang::CompilerInstance());
-   
+
   mPP.reset(new clang::Preprocessor(*mDiagnostics,
                                     mLangOpts,
                                     mTarget.get(),
@@ -185,7 +185,6 @@
 void Compiler::init(const std::string &Triple, const std::string &CPU,
                     const std::vector<std::string> &Features, bool isCXX) {
   mLangOpts.RTTI = 0;  // Turn off the RTTI information support
-  mLangOpts.NeXTRuntime = 0;   // Turn off the NeXT runtime uses
   mLangOpts.C99 = 1;
   if (isCXX) {
     mLangOpts.CPlusPlus = 1;