Driver: Forward -fno-common to clang.
authorDaniel Dunbar <daniel@zuster.org>
Thu, 26 Mar 2009 16:37:00 +0000 (16:37 +0000)
committerDaniel Dunbar <daniel@zuster.org>
Thu, 26 Mar 2009 16:37:00 +0000 (16:37 +0000)
 - <rdar://problem/6710978> ccc/clang-driver ignore -fno-common

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@67762 91177308-0d34-0410-b5e6-96231b3b80d8

include/clang/Driver/Options.def
test/CodeGen/no-common.c [new file with mode: 0644]

index 76fe06d9a8a8e594c42dae7e282302e0fb267f06..dc1ce15cd594b66bd75d2415ebf7d8e0d466ec3c 100644 (file)
@@ -387,6 +387,7 @@ OPTION("-fnext-runtime", fnext_runtime, Flag, clang_f_Group, INVALID, "", 0)
 OPTION("-fno-blocks", fno_blocks, Flag, clang_f_Group, INVALID, "", 0)
 OPTION("-fno-builtin", fno_builtin, Flag, clang_f_Group, INVALID, "", 0)
 OPTION("-fno-caret-diagnostics", fno_caret_diagnostics, Flag, clang_f_Group, INVALID, "", 0)
+OPTION("-fno-common", fno_common, Flag, clang_f_Group, INVALID, "", 0)
 OPTION("-fno-constant-cfstrings", fno_constant_cfstrings, Flag, f_Group, INVALID, "", 0)
 OPTION("-fno-eliminate-unused-debug-symbols", fno_eliminate_unused_debug_symbols, Flag, f_Group, INVALID, "", 0)
 OPTION("-fno-math-errno", fno_math_errno, Flag, f_Group, INVALID, "", 0)
diff --git a/test/CodeGen/no-common.c b/test/CodeGen/no-common.c
new file mode 100644 (file)
index 0000000..190873c
--- /dev/null
@@ -0,0 +1,6 @@
+// RUN: clang -emit-llvm -S -o %t %s &&
+// RUN: grep '@x = common global' %t &&
+// RUN: clang -fno-common -emit-llvm -S -o %t %s &&
+// RUN: grep '@x = global' %t
+
+int x;