Driver: GCC 4.0 isn't happy with VISIBILITY_HIDDEN on a namespace.


git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@67110 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/lib/Driver/ToolChains.h b/lib/Driver/ToolChains.h
index be476d7..c5e01ba 100644
--- a/lib/Driver/ToolChains.h
+++ b/lib/Driver/ToolChains.h
@@ -20,12 +20,12 @@
 
 namespace clang {
 namespace driver {
-namespace toolchains VISIBILITY_HIDDEN {
+namespace toolchains {
 
   /// Generic_GCC - A tool chain using the 'gcc' command to perform
   /// all subcommands; this relies on gcc translating the majority of
   /// command line options.
-class Generic_GCC : public ToolChain {
+class VISIBILITY_HIDDEN Generic_GCC : public ToolChain {
   mutable llvm::DenseMap<unsigned, Tool*> Tools;
 
 public: