aboutsummaryrefslogtreecommitdiff
path: root/include/clang/Frontend/CodeGenOptions.h
diff options
context:
space:
mode:
authorNick Lewycky <nicholas@mxc.ca>2011-05-05 00:08:20 +0000
committerNick Lewycky <nicholas@mxc.ca>2011-05-05 00:08:20 +0000
commit3dc05418538c719fea48b906bfa4febe5296e126 (patch)
tree687d5784fa052acf5afcc1c73477daea9c8c7489 /include/clang/Frontend/CodeGenOptions.h
parentc1598700010cea9364a58a65e967b0b56361b6aa (diff)
Preserve the full name of the file, so that '-c -o foo.pic.o' produces
foo.pic.gcno instead of foo.gcno. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@130899 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/clang/Frontend/CodeGenOptions.h')
-rw-r--r--include/clang/Frontend/CodeGenOptions.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/include/clang/Frontend/CodeGenOptions.h b/include/clang/Frontend/CodeGenOptions.h
index 7221f0d554..1c686c76df 100644
--- a/include/clang/Frontend/CodeGenOptions.h
+++ b/include/clang/Frontend/CodeGenOptions.h
@@ -95,8 +95,9 @@ public:
/// The code model to use (-mcmodel).
std::string CodeModel;
- /// The directory in which to place coverage data files.
- std::string CoverageDir;
+ /// The filename with path we use for coverage files. The extension will be
+ /// replaced.
+ std::string CoverageFile;
/// Enable additional debugging information.
std::string DebugPass;