properly namespacify.


git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@44845 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/Driver/Targets.cpp b/Driver/Targets.cpp
index a809b94..23f8307 100644
--- a/Driver/Targets.cpp
+++ b/Driver/Targets.cpp
@@ -299,6 +299,7 @@
 
 
 /// PPC builtin info.
+namespace clang {
 namespace PPC {
   
   static const Builtin::Info BuiltinInfo[] = {
@@ -404,7 +405,6 @@
   
 } // End namespace PPC
 
-
 /// X86 builtin info.
 namespace X86 {
   static const Builtin::Info BuiltinInfo[] = {
@@ -477,6 +477,7 @@
   }
   
 } // End namespace X86
+} // end namespace clang.
 
 //===----------------------------------------------------------------------===//
 // Specific target implementations.