From: Easwaran Raman Date: Fri, 29 Apr 2016 18:53:16 +0000 (+0000) Subject: Use the new path for coverage related headers and update CMakeLists.txt X-Git-Tag: llvmorg-3.9.0-rc1~7421 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=b014ee467d61ad0cfbf59f721b29e27082ea878d;p=platform%2Fupstream%2Fllvm.git Use the new path for coverage related headers and update CMakeLists.txt Differential Revision: http://reviews.llvm.org/D19612 llvm-svn: 268090 --- diff --git a/clang/lib/CodeGen/CMakeLists.txt b/clang/lib/CodeGen/CMakeLists.txt index 2be6dee..257dec9 100644 --- a/clang/lib/CodeGen/CMakeLists.txt +++ b/clang/lib/CodeGen/CMakeLists.txt @@ -3,6 +3,7 @@ set(LLVM_LINK_COMPONENTS BitReader BitWriter Core + Coverage IPO IRReader InstCombine diff --git a/clang/lib/CodeGen/CoverageMappingGen.cpp b/clang/lib/CodeGen/CoverageMappingGen.cpp index adafee4..820ba1b 100644 --- a/clang/lib/CodeGen/CoverageMappingGen.cpp +++ b/clang/lib/CodeGen/CoverageMappingGen.cpp @@ -18,9 +18,9 @@ #include "llvm/ADT/SmallSet.h" #include "llvm/ADT/StringExtras.h" #include "llvm/ADT/Optional.h" -#include "llvm/ProfileData/CoverageMapping.h" -#include "llvm/ProfileData/CoverageMappingReader.h" -#include "llvm/ProfileData/CoverageMappingWriter.h" +#include "llvm/ProfileData/Coverage/CoverageMapping.h" +#include "llvm/ProfileData/Coverage/CoverageMappingReader.h" +#include "llvm/ProfileData/Coverage/CoverageMappingWriter.h" #include "llvm/ProfileData/InstrProfReader.h" #include "llvm/Support/FileSystem.h"