Skip a few more files and linker options.


git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@52189 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/utils/ccc-analyzer b/utils/ccc-analyzer
index d301f74..23f83f6 100755
--- a/utils/ccc-analyzer
+++ b/utils/ccc-analyzer
@@ -84,7 +84,7 @@
     print >> sys.stderr, ' '.join(command+print_args)
     print >> sys.stderr, '\n'
 
-  subprocess.call(args)
+#  subprocess.call(args)
 
 def extension(path):
     return path.split(".")[-1]
@@ -110,7 +110,7 @@
       return "objective-c"
   elif extension == "mi":
       return "objective-c-cpp-output"
-  elif extension == "s" or extension == "o":
+  elif extension in [ "s", "o", "a", "so" ]:
       return "skip"
   else:
       return "unknown"
@@ -245,7 +245,7 @@
     # Arguments we currently ignore with one option.
     if arg in ['-install_name', '-exported_symbols_list', 
                '-current_version', '-compatibility_version', '-init', '-e',
-               '-seg1addr']:
+               '-seg1addr', '-bundle_loader', '-multiply_defined']:
       i += 1
       
     # Arguments we currently ignore with three options.