diff options
-rw-r--r-- | include/clang/Driver/Options.def | 1 | ||||
-rw-r--r-- | test/CodeGen/no-common.c | 6 |
2 files changed, 7 insertions, 0 deletions
diff --git a/include/clang/Driver/Options.def b/include/clang/Driver/Options.def index 76fe06d9a8..dc1ce15cd5 100644 --- a/include/clang/Driver/Options.def +++ b/include/clang/Driver/Options.def @@ -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 index 0000000000..190873c745 --- /dev/null +++ b/test/CodeGen/no-common.c @@ -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; |