diff options
Diffstat (limited to 'compiler-rt/test/profile/Inputs/instrprof-comdat-1.cpp')
-rw-r--r-- | compiler-rt/test/profile/Inputs/instrprof-comdat-1.cpp | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/compiler-rt/test/profile/Inputs/instrprof-comdat-1.cpp b/compiler-rt/test/profile/Inputs/instrprof-comdat-1.cpp deleted file mode 100644 index bd574ec3fb8..00000000000 --- a/compiler-rt/test/profile/Inputs/instrprof-comdat-1.cpp +++ /dev/null @@ -1,17 +0,0 @@ -#include "instrprof-comdat.h" -int g; -extern int bar(int); - -int main() { - - FOO<int> Foo; - - int Res = Foo.DoIt(10); - - if (Res > 10) - g = bar(10); - else - g = bar(1) + bar(2); - return 0; -} - |