Convenience to allow easy copy-n-paste from clang -v output when
reproducing cc1as comandline.
rdar://problem/
23959295
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@264813
91177308-0d34-0410-b5e6-
96231b3b80d8
// Set the AT_producer to the clang version when using the integrated
// assembler on assembly source files.
CmdArgs.push_back("-dwarf-debug-producer");
- CmdArgs.push_back(Args.MakeArgString(getClangFullVersion()));
+ std::string QuotedClangVersion("'" + getClangFullVersion() + "'");
+ CmdArgs.push_back(Args.MakeArgString(QuotedClangVersion));
// And pass along -I options
Args.AddAllArgs(CmdArgs, options::OPT_I);
// Run cc1as asm output path just to make sure it works
// REQUIRES: x86-registered-target
// RUN: %clang -cc1as -triple x86_64-apple-macosx10.10.0 -filetype asm %s -o /dev/null
+// Test that cc1as is able to consume a quoted clang full version
+// RUN: %clang -cc1as -triple x86_64-apple-macosx10.10.0 -dwarf-debug-producer 'clang dummy version' -filetype asm %s -o /dev/null