diff options
author | David Blaikie <dblaikie@gmail.com> | 2017-11-03 20:57:10 +0000 |
---|---|---|
committer | David Blaikie <dblaikie@gmail.com> | 2017-11-03 20:57:10 +0000 |
commit | 34eb96b03ff3a770b75c3106ba811daf8bc4e650 (patch) | |
tree | 0836a6a216223b9a472e46793e856c48081bfcc4 /llvm/tools/llvm-cov/gcov.cpp | |
parent | 998ff81f7c06fa1cae39962c65dfcca9bbd17ebd (diff) | |
download | bcm5719-llvm-34eb96b03ff3a770b75c3106ba811daf8bc4e650.tar.gz bcm5719-llvm-34eb96b03ff3a770b75c3106ba811daf8bc4e650.zip |
GCOV: Move GCOV from IR & Support into ProfileData to fix layering
This class was split between libIR and libSupport, which breaks under
modular code generation. Move it into the one library that uses it,
ProfileData, to resolve this issue.
llvm-svn: 317366
Diffstat (limited to 'llvm/tools/llvm-cov/gcov.cpp')
-rw-r--r-- | llvm/tools/llvm-cov/gcov.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/tools/llvm-cov/gcov.cpp b/llvm/tools/llvm-cov/gcov.cpp index 4df7f015fd1..7776f2aa9a6 100644 --- a/llvm/tools/llvm-cov/gcov.cpp +++ b/llvm/tools/llvm-cov/gcov.cpp @@ -11,11 +11,11 @@ // //===----------------------------------------------------------------------===// +#include "llvm/ProfileData/GCOV.h" #include "llvm/ADT/SmallString.h" #include "llvm/Support/CommandLine.h" #include "llvm/Support/Errc.h" #include "llvm/Support/FileSystem.h" -#include "llvm/Support/GCOV.h" #include "llvm/Support/Path.h" #include <system_error> using namespace llvm; |