[compiler-rt] r337493 - [profile] Fix typo in test
Teresa Johnson via llvm-commits
llvm-commits at lists.llvm.org
Thu Jul 19 13:18:37 PDT 2018
Author: tejohnson
Date: Thu Jul 19 13:18:37 2018
New Revision: 337493
URL: http://llvm.org/viewvc/llvm-project?rev=337493&view=rev
Log:
[profile] Fix typo in test
Noticed that this was causing a compiler warning in the test.
Modified:
compiler-rt/trunk/test/profile/instrprof-path.c
Modified: compiler-rt/trunk/test/profile/instrprof-path.c
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/test/profile/instrprof-path.c?rev=337493&r1=337492&r2=337493&view=diff
==============================================================================
--- compiler-rt/trunk/test/profile/instrprof-path.c (original)
+++ compiler-rt/trunk/test/profile/instrprof-path.c Thu Jul 19 13:18:37 2018
@@ -12,7 +12,7 @@
#include <string.h>
const char *__llvm_profile_get_path_prefix();
-void __llvm_profile_set_filanem(const char*);
+void __llvm_profile_set_filename(const char*);
int main(int argc, const char *argv[]) {
int i;
More information about the llvm-commits
mailing list