MSVC doesn't like the mixing of declarations and statements in a .c file.

llvm-svn: 153549
This commit is contained in:
Francois Pichet 2012-03-27 23:52:22 +00:00
parent 78254c8880
commit 958708624c
1 changed files with 2 additions and 1 deletions

View File

@ -114,8 +114,9 @@ void llvm_gcda_start_file(const char *orig_filename) {
output_file = fopen(filename, "wb");
if (!output_file) {
const char *cptr = 0;
filename[0] = '\0'; /* The size of filename should be big enough. */
char *cptr = strrchr(orig_filename, '/');
cptr = strrchr(orig_filename, '/');
strcat(filename, cptr ? cptr + 1 : orig_filename);
output_file = fopen(filename, "wb");