Skip to content
Snippets Groups Projects
Commit 3056ebeb authored by Reid Spencer's avatar Reid Spencer
Browse files

Remove unused variable.

llvm-svn: 31404
parent 03c60382
No related branches found
No related tags found
No related merge requests found
...@@ -88,7 +88,6 @@ void write_profiling_data(enum ProfilingType PT, unsigned *Start, ...@@ -88,7 +88,6 @@ void write_profiling_data(enum ProfilingType PT, unsigned *Start,
* appending, creating it if it does not already exist. * appending, creating it if it does not already exist.
*/ */
if (OutFile == -1) { if (OutFile == -1) {
off_t Offset;
OutFile = open(OutputFilename, O_CREAT | O_WRONLY | O_APPEND, 0666); OutFile = open(OutputFilename, O_CREAT | O_WRONLY | O_APPEND, 0666);
if (OutFile == -1) { if (OutFile == -1) {
fprintf(stderr, "LLVM profiling runtime: while opening '%s': ", fprintf(stderr, "LLVM profiling runtime: while opening '%s': ",
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment