diff options
| author | Duncan P. N. Exon Smith <dexonsmith@apple.com> | 2014-03-21 18:29:15 +0000 | 
|---|---|---|
| committer | Duncan P. N. Exon Smith <dexonsmith@apple.com> | 2014-03-21 18:29:15 +0000 | 
| commit | be0a5e176b6cadae34b14a7efac7eae2d918cfb6 (patch) | |
| tree | 585c0ec1ada6e845167029fa5ec7e388a0bc22c7 /compiler-rt/lib/profile/InstrProfilingRuntime.cc | |
| parent | 24b4b6533925e6dbd0faef7976c7f794499e0ec6 (diff) | |
| download | bcm5719-llvm-be0a5e176b6cadae34b14a7efac7eae2d918cfb6.tar.gz bcm5719-llvm-be0a5e176b6cadae34b14a7efac7eae2d918cfb6.zip | |
InstrProf: Reorganize files; no functionality change
Move functions around to prepare for some other changes.
  - Merge InstrProfilingExtras.h with InstrProfiling.h.  There's no
    benefit to having these split.
  - Rename InstrProfilingExtras.c to InstrProfilingFile.c.
  - Split actual buffer writing code out of InstrProfiling.c into
    InstrProfilingBuffer.c.
  - Drive-by corrections of a couple of header comments.
<rdar://problem/15943240>
llvm-svn: 204497
Diffstat (limited to 'compiler-rt/lib/profile/InstrProfilingRuntime.cc')
| -rw-r--r-- | compiler-rt/lib/profile/InstrProfilingRuntime.cc | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/compiler-rt/lib/profile/InstrProfilingRuntime.cc b/compiler-rt/lib/profile/InstrProfilingRuntime.cc index 6116b0c1f3a..709b96c7af1 100644 --- a/compiler-rt/lib/profile/InstrProfilingRuntime.cc +++ b/compiler-rt/lib/profile/InstrProfilingRuntime.cc @@ -9,7 +9,7 @@  extern "C" { -#include "InstrProfilingExtras.h" +#include "InstrProfiling.h"  extern int __llvm_profile_runtime;  int __llvm_profile_runtime; | 

