@@ -317,7 +317,7 @@ index e5773bd..40122bd 100644
317
317
llvm-as
318
318
llvm-bcanalyzer
319
319
diff --git a/tools/lli/CMakeLists.txt b/tools/lli/CMakeLists.txt
320
- index 2bdd066..2570d9b 100644
320
+ index 2bdd066..8a4c9d0 100644
321
321
--- a/tools/lli/CMakeLists.txt
322
322
+++ b/tools/lli/CMakeLists.txt
323
323
@@ -1,7 +1,3 @@
@@ -328,13 +328,6 @@ index 2bdd066..2570d9b 100644
328
328
set(LLVM_LINK_COMPONENTS
329
329
CodeGen
330
330
Core
331
- @@ -39,6 +35,5 @@ endif( LLVM_USE_INTEL_JITEVENTS )
332
-
333
- add_llvm_tool(lli
334
- lli.cpp
335
- - OrcLazyJIT.cpp
336
- )
337
- export_executable_symbols(lli)
338
331
diff --git a/tools/lli/ChildTarget/CMakeLists.txt b/tools/lli/ChildTarget/CMakeLists.txt
339
332
deleted file mode 100644
340
333
index e4fe0c7..0000000
@@ -477,11 +470,10 @@ index 9d889bf..4738504 100644
477
470
type = Tool
478
471
name = lli
479
472
diff --git a/tools/lli/OrcLazyJIT.cpp b/tools/lli/OrcLazyJIT.cpp
480
- deleted file mode 100644
481
- index b13e769..0000000
473
+ index b13e769..8b13789 100644
482
474
--- a/tools/lli/OrcLazyJIT.cpp
483
- +++ /dev/null
484
- @@ -1,158 +0,0 @@
475
+ +++ b/tools/lli/OrcLazyJIT.cpp
476
+ @@ -1,158 +1 @@
485
477
- //===------ OrcLazyJIT.cpp - Basic Orc-based JIT for lazy execution -------===//
486
478
- //
487
479
- // The LLVM Compiler Infrastructure
@@ -639,7 +631,7 @@ index b13e769..0000000
639
631
- auto Main = fromTargetAddress<MainFnPtr>(MainSym.getAddress());
640
632
- return Main(ArgC, ArgV);
641
633
- }
642
- -
634
+
643
635
diff --git a/tools/lli/OrcLazyJIT.h b/tools/lli/OrcLazyJIT.h
644
636
deleted file mode 100644
645
637
index 733bdd8..0000000
@@ -989,39 +981,11 @@ index 92de5da..7203af2 100644
989
981
+ int main(int argc, char **argv, char * const *envp) {
990
982
+ return 0;
991
983
+ }
992
- diff --git a/tools/llvm-cov/CMakeLists.txt b/tools/llvm-cov/CMakeLists.txt
993
- index e22828e..df668c2 100644
994
- --- a/tools/llvm-cov/CMakeLists.txt
995
- +++ b/tools/llvm-cov/CMakeLists.txt
996
- @@ -2,13 +2,13 @@ set(LLVM_LINK_COMPONENTS core support object coverage profiledata)
997
-
998
- add_llvm_tool(llvm-cov
999
- llvm-cov.cpp
1000
- - gcov.cpp
1001
- - CodeCoverage.cpp
1002
- - CoverageFilters.cpp
1003
- - CoverageReport.cpp
1004
- - CoverageSummaryInfo.cpp
1005
- - SourceCoverageView.cpp
1006
- - SourceCoverageViewHTML.cpp
1007
- - SourceCoverageViewText.cpp
1008
- - TestingSupport.cpp
1009
- + # gcov.cpp
1010
- + # CodeCoverage.cpp
1011
- + # CoverageFilters.cpp
1012
- + # CoverageReport.cpp
1013
- + # CoverageSummaryInfo.cpp
1014
- + # SourceCoverageView.cpp
1015
- + # SourceCoverageViewHTML.cpp
1016
- + # SourceCoverageViewText.cpp
1017
- + # TestingSupport.cpp
1018
- )
1019
984
diff --git a/tools/llvm-cov/CodeCoverage.cpp b/tools/llvm-cov/CodeCoverage.cpp
1020
- deleted file mode 100644
1021
- index 0a4d1a6..0000000
985
+ index 0a4d1a6..8b13789 100644
1022
986
--- a/tools/llvm-cov/CodeCoverage.cpp
1023
- +++ /dev/null
1024
- @@ -1,727 +0,0 @@
987
+ +++ b/tools/llvm-cov/CodeCoverage.cpp
988
+ @@ -1,727 +1 @@
1025
989
- //===- CodeCoverage.cpp - Coverage tool based on profiling instrumentation-===//
1026
990
- //
1027
991
- // The LLVM Compiler Infrastructure
@@ -1036,7 +1000,7 @@ index 0a4d1a6..0000000
1036
1000
- // coverage mapping.
1037
1001
- //
1038
1002
- //===----------------------------------------------------------------------===//
1039
- -
1003
+
1040
1004
- #include "CoverageFilters.h"
1041
1005
- #include "CoverageReport.h"
1042
1006
- #include "CoverageViewOptions.h"
@@ -1750,11 +1714,10 @@ index 0a4d1a6..0000000
1750
1714
- return Tool.run(CodeCoverageTool::Report, argc, argv);
1751
1715
- }
1752
1716
diff --git a/tools/llvm-cov/CoverageFilters.cpp b/tools/llvm-cov/CoverageFilters.cpp
1753
- deleted file mode 100644
1754
- index 325dd72..0000000
1717
+ index 325dd72..8b13789 100644
1755
1718
--- a/tools/llvm-cov/CoverageFilters.cpp
1756
- +++ /dev/null
1757
- @@ -1,59 +0,0 @@
1719
+ +++ b/tools/llvm-cov/CoverageFilters.cpp
1720
+ @@ -1,59 +1 @@
1758
1721
- //===- CoverageFilters.cpp - Function coverage mapping filters ------------===//
1759
1722
- //
1760
1723
- // The LLVM Compiler Infrastructure
@@ -1767,7 +1730,7 @@ index 325dd72..0000000
1767
1730
- // These classes provide filtering for function coverage mapping records.
1768
1731
- //
1769
1732
- //===----------------------------------------------------------------------===//
1770
- -
1733
+
1771
1734
- #include "CoverageFilters.h"
1772
1735
- #include "CoverageSummaryInfo.h"
1773
1736
- #include "llvm/Support/Regex.h"
@@ -1948,11 +1911,10 @@ index 756c4b4..0000000
1948
1911
-
1949
1912
- #endif // LLVM_COV_COVERAGEFILTERS_H
1950
1913
diff --git a/tools/llvm-cov/CoverageReport.cpp b/tools/llvm-cov/CoverageReport.cpp
1951
- deleted file mode 100644
1952
- index 10e53b3..0000000
1914
+ index 10e53b3..8b13789 100644
1953
1915
--- a/tools/llvm-cov/CoverageReport.cpp
1954
- +++ /dev/null
1955
- @@ -1,235 +0,0 @@
1916
+ +++ b/tools/llvm-cov/CoverageReport.cpp
1917
+ @@ -1,235 +1 @@
1956
1918
- //===- CoverageReport.cpp - Code coverage report -------------------------===//
1957
1919
- //
1958
1920
- // The LLVM Compiler Infrastructure
@@ -1965,7 +1927,7 @@ index 10e53b3..0000000
1965
1927
- // This class implements rendering of a code coverage report.
1966
1928
- //
1967
1929
- //===----------------------------------------------------------------------===//
1968
- -
1930
+
1969
1931
- #include "CoverageReport.h"
1970
1932
- #include "RenderingSupport.h"
1971
1933
- #include "llvm/Support/FileSystem.h"
@@ -2236,11 +2198,10 @@ index bb3d734..0000000
2236
2198
-
2237
2199
- #endif // LLVM_COV_COVERAGEREPORT_H
2238
2200
diff --git a/tools/llvm-cov/CoverageSummaryInfo.cpp b/tools/llvm-cov/CoverageSummaryInfo.cpp
2239
- deleted file mode 100644
2240
- index de89750..0000000
2201
+ index de89750..8b13789 100644
2241
2202
--- a/tools/llvm-cov/CoverageSummaryInfo.cpp
2242
- +++ /dev/null
2243
- @@ -1,71 +0,0 @@
2203
+ +++ b/tools/llvm-cov/CoverageSummaryInfo.cpp
2204
+ @@ -1,71 +1 @@
2244
2205
- //===- CoverageSummaryInfo.cpp - Coverage summary for function/file -------===//
2245
2206
- //
2246
2207
- // The LLVM Compiler Infrastructure
@@ -2254,7 +2215,7 @@ index de89750..0000000
2254
2215
- // for functions/files.
2255
2216
- //
2256
2217
- //===----------------------------------------------------------------------===//
2257
- -
2218
+
2258
2219
- #include "CoverageSummaryInfo.h"
2259
2220
-
2260
2221
- using namespace llvm;
@@ -2606,11 +2567,10 @@ index aa70fbc..0000000
2606
2567
-
2607
2568
- #endif // LLVM_COV_RENDERINGSUPPORT_H
2608
2569
diff --git a/tools/llvm-cov/SourceCoverageView.cpp b/tools/llvm-cov/SourceCoverageView.cpp
2609
- deleted file mode 100644
2610
- index baf7c14..0000000
2570
+ index baf7c14..8b13789 100644
2611
2571
--- a/tools/llvm-cov/SourceCoverageView.cpp
2612
- +++ /dev/null
2613
- @@ -1,233 +0,0 @@
2572
+ +++ b/tools/llvm-cov/SourceCoverageView.cpp
2573
+ @@ -1,233 +1 @@
2614
2574
- //===- SourceCoverageView.cpp - Code coverage view for source code --------===//
2615
2575
- //
2616
2576
- // The LLVM Compiler Infrastructure
@@ -2623,7 +2583,7 @@ index baf7c14..0000000
2623
2583
- /// \file This class implements rendering for code coverage of source code.
2624
2584
- ///
2625
2585
- //===----------------------------------------------------------------------===//
2626
- -
2586
+
2627
2587
- #include "SourceCoverageView.h"
2628
2588
- #include "SourceCoverageViewHTML.h"
2629
2589
- #include "SourceCoverageViewText.h"
@@ -3136,11 +3096,10 @@ index feef959..0000000
3136
3096
-
3137
3097
- #endif // LLVM_COV_SOURCECOVERAGEVIEW_H
3138
3098
diff --git a/tools/llvm-cov/SourceCoverageViewHTML.cpp b/tools/llvm-cov/SourceCoverageViewHTML.cpp
3139
- deleted file mode 100644
3140
- index 81963e5..0000000
3099
+ index 81963e5..8b13789 100644
3141
3100
--- a/tools/llvm-cov/SourceCoverageViewHTML.cpp
3142
- +++ /dev/null
3143
- @@ -1,436 +0,0 @@
3101
+ +++ b/tools/llvm-cov/SourceCoverageViewHTML.cpp
3102
+ @@ -1,436 +1 @@
3144
3103
- //===- SourceCoverageViewHTML.cpp - A html code coverage view -------------===//
3145
3104
- //
3146
3105
- // The LLVM Compiler Infrastructure
@@ -3153,7 +3112,7 @@ index 81963e5..0000000
3153
3112
- /// \file This file implements the html coverage renderer.
3154
3113
- ///
3155
3114
- //===----------------------------------------------------------------------===//
3156
- -
3115
+
3157
3116
- #include "SourceCoverageViewHTML.h"
3158
3117
- #include "llvm/ADT/Optional.h"
3159
3118
- #include "llvm/ADT/SmallString.h"
@@ -3667,11 +3626,10 @@ index 50ecf2b..0000000
3667
3626
-
3668
3627
- #endif // LLVM_COV_SOURCECOVERAGEVIEWHTML_H
3669
3628
diff --git a/tools/llvm-cov/SourceCoverageViewText.cpp b/tools/llvm-cov/SourceCoverageViewText.cpp
3670
- deleted file mode 100644
3671
- index ae9d6da..0000000
3629
+ index ae9d6da..8b13789 100644
3672
3630
--- a/tools/llvm-cov/SourceCoverageViewText.cpp
3673
- +++ /dev/null
3674
- @@ -1,213 +0,0 @@
3631
+ +++ b/tools/llvm-cov/SourceCoverageViewText.cpp
3632
+ @@ -1,213 +1 @@
3675
3633
- //===- SourceCoverageViewText.cpp - A text-based code coverage view -------===//
3676
3634
- //
3677
3635
- // The LLVM Compiler Infrastructure
@@ -3684,7 +3642,7 @@ index ae9d6da..0000000
3684
3642
- /// \file This file implements the text-based coverage renderer.
3685
3643
- ///
3686
3644
- //===----------------------------------------------------------------------===//
3687
- -
3645
+
3688
3646
- #include "SourceCoverageViewText.h"
3689
3647
- #include "llvm/ADT/Optional.h"
3690
3648
- #include "llvm/ADT/SmallString.h"
@@ -3975,11 +3933,10 @@ index b233124..0000000
3975
3933
-
3976
3934
- #endif // LLVM_COV_SOURCECOVERAGEVIEWTEXT_H
3977
3935
diff --git a/tools/llvm-cov/TestingSupport.cpp b/tools/llvm-cov/TestingSupport.cpp
3978
- deleted file mode 100644
3979
- index 72768f4..0000000
3936
+ index 72768f4..8b13789 100644
3980
3937
--- a/tools/llvm-cov/TestingSupport.cpp
3981
- +++ /dev/null
3982
- @@ -1,92 +0,0 @@
3938
+ +++ b/tools/llvm-cov/TestingSupport.cpp
3939
+ @@ -1,92 +1 @@
3983
3940
- //===- TestingSupport.cpp - Convert objects files into test files --------===//
3984
3941
- //
3985
3942
- // The LLVM Compiler Infrastructure
@@ -3988,7 +3945,7 @@ index 72768f4..0000000
3988
3945
- // License. See LICENSE.TXT for details.
3989
3946
- //
3990
3947
- //===----------------------------------------------------------------------===//
3991
- -
3948
+
3992
3949
- #include "llvm/Object/ObjectFile.h"
3993
3950
- #include "llvm/ProfileData/InstrProf.h"
3994
3951
- #include "llvm/Support/CommandLine.h"
@@ -4073,11 +4030,10 @@ index 72768f4..0000000
4073
4030
- return 0;
4074
4031
- }
4075
4032
diff --git a/tools/llvm-cov/gcov.cpp b/tools/llvm-cov/gcov.cpp
4076
- deleted file mode 100644
4077
- index 4652fed..0000000
4033
+ index 4652fed..8b13789 100644
4078
4034
--- a/tools/llvm-cov/gcov.cpp
4079
- +++ /dev/null
4080
- @@ -1,145 +0,0 @@
4035
+ +++ b/tools/llvm-cov/gcov.cpp
4036
+ @@ -1,145 +1 @@
4081
4037
- //===- gcov.cpp - GCOV compatible LLVM coverage tool ----------------------===//
4082
4038
- //
4083
4039
- // The LLVM Compiler Infrastructure
@@ -4090,7 +4046,7 @@ index 4652fed..0000000
4090
4046
- // llvm-cov is a command line tools to analyze and report coverage information.
4091
4047
- //
4092
4048
- //===----------------------------------------------------------------------===//
4093
- -
4049
+
4094
4050
- #include "llvm/ADT/SmallString.h"
4095
4051
- #include "llvm/Support/CommandLine.h"
4096
4052
- #include "llvm/Support/Errc.h"
0 commit comments