diff options
Diffstat (limited to 'llvm/test/tools/llvm-cov/Inputs/branch-logical-mixed.cpp')
-rw-r--r-- | llvm/test/tools/llvm-cov/Inputs/branch-logical-mixed.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/test/tools/llvm-cov/Inputs/branch-logical-mixed.cpp b/llvm/test/tools/llvm-cov/Inputs/branch-logical-mixed.cpp index 0a7d8d8..a5fb68c 100644 --- a/llvm/test/tools/llvm-cov/Inputs/branch-logical-mixed.cpp +++ b/llvm/test/tools/llvm-cov/Inputs/branch-logical-mixed.cpp @@ -78,6 +78,6 @@ extern "C" { extern void __llvm_profile_write_file(void); } int main(int argc, char *argv[]) { func(atoi(argv[1]), atoi(argv[2])); - __llvm_profile_write_file(); + (void)0; return 0; } |