[compiler-rt] r262927 - [Fix r262788] Fix missed prototype with the old llvm* name.

Filipe Cabecinhas via llvm-commits llvm-commits at lists.llvm.org
Tue Mar 8 06:22:15 PST 2016


Author: filcab
Date: Tue Mar  8 08:22:13 2016
New Revision: 262927

URL: http://llvm.org/viewvc/llvm-project?rev=262927&view=rev
Log:
[Fix r262788] Fix missed prototype with the old llvm* name.

Modified:
    compiler-rt/trunk/test/profile/instrprof-bufferio.c

Modified: compiler-rt/trunk/test/profile/instrprof-bufferio.c
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/test/profile/instrprof-bufferio.c?rev=262927&r1=262926&r2=262927&view=diff
==============================================================================
--- compiler-rt/trunk/test/profile/instrprof-bufferio.c (original)
+++ compiler-rt/trunk/test/profile/instrprof-bufferio.c Tue Mar  8 08:22:13 2016
@@ -11,7 +11,7 @@
 #include <string.h>
 
 typedef struct ProfBufferIO ProfBufferIO;
-ProfBufferIO *llvmCreateBufferIOInternal(FILE *File, uint32_t DefaultBufferSz);
+ProfBufferIO *lprofCreateBufferIOInternal(FILE *File, uint32_t DefaultBufferSz);
 void lprofDeleteBufferIO(ProfBufferIO *BufferIO);
 
 int lprofBufferIOWrite(ProfBufferIO *BufferIO, const char *Data, uint32_t Size);




More information about the llvm-commits mailing list