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