diff options
author | Xinliang David Li <davidxl@google.com> | 2016-01-21 01:21:00 +0000 |
---|---|---|
committer | Xinliang David Li <davidxl@google.com> | 2016-01-21 01:21:00 +0000 |
commit | d75eaf2b17bba1c0ee6aab873e1243531c2faedd (patch) | |
tree | 520a5185ba4a67307335f09e8c8b05bdf5e9cc0c /llvm/test/tools/llvm-cov/Inputs | |
parent | bc05e4e4c01b8a05e750b9aa9cad7df729b57938 (diff) | |
download | bcm5719-llvm-d75eaf2b17bba1c0ee6aab873e1243531c2faedd.tar.gz bcm5719-llvm-d75eaf2b17bba1c0ee6aab873e1243531c2faedd.zip |
Revert 258376 -- wrong version
llvm-svn: 258377
Diffstat (limited to 'llvm/test/tools/llvm-cov/Inputs')
-rwxr-xr-x | llvm/test/tools/llvm-cov/Inputs/elf_binary_comdat | bin | 2125247 -> 0 bytes | |||
-rw-r--r-- | llvm/test/tools/llvm-cov/Inputs/elf_binary_comdat.profdata | bin | 1040 -> 0 bytes | |||
-rw-r--r-- | llvm/test/tools/llvm-cov/Inputs/instrprof-comdat.h | 19 |
3 files changed, 0 insertions, 19 deletions
diff --git a/llvm/test/tools/llvm-cov/Inputs/elf_binary_comdat b/llvm/test/tools/llvm-cov/Inputs/elf_binary_comdat Binary files differdeleted file mode 100755 index b5ce4b5a35f..00000000000 --- a/llvm/test/tools/llvm-cov/Inputs/elf_binary_comdat +++ /dev/null diff --git a/llvm/test/tools/llvm-cov/Inputs/elf_binary_comdat.profdata b/llvm/test/tools/llvm-cov/Inputs/elf_binary_comdat.profdata Binary files differdeleted file mode 100644 index 85667041e2c..00000000000 --- a/llvm/test/tools/llvm-cov/Inputs/elf_binary_comdat.profdata +++ /dev/null diff --git a/llvm/test/tools/llvm-cov/Inputs/instrprof-comdat.h b/llvm/test/tools/llvm-cov/Inputs/instrprof-comdat.h deleted file mode 100644 index e1227167cd4..00000000000 --- a/llvm/test/tools/llvm-cov/Inputs/instrprof-comdat.h +++ /dev/null @@ -1,19 +0,0 @@ -template <class T> class FOO { -public: - FOO() : t(0) {} - - T DoIt(T ti); - -private: - T t; -}; - -template <class T> T FOO<T>::DoIt(T ti) { // HEADER: 2| [[@LINE]]|template - for (T I = 0; I < ti; I++) { // HEADER: 22| [[@LINE]]| for (T - t += I; // HEADER: 20| [[@LINE]]| t += I; - if (I > ti / 2) // HEADER: 20| [[@LINE]]| if (I > ti - t -= 1; // HEADER: 8| [[@LINE]]| t -= 1; - } // HEADER: 10| [[@LINE]]| } - // HEADER: 1| [[@LINE]]| - return t; // HEADER: 1| [[@LINE]]| return t; -} |