diff options
| author | Duncan P. N. Exon Smith <dexonsmith@apple.com> | 2014-03-20 18:43:09 +0000 |
|---|---|---|
| committer | Duncan P. N. Exon Smith <dexonsmith@apple.com> | 2014-03-20 18:43:09 +0000 |
| commit | 9cee5e0e92e34348ca9a798c81b51a3497154e3f (patch) | |
| tree | 9399f350175ce54d8b00ad3d25244e25b9254e89 | |
| parent | a5f804a7eaad5e2727fc0132c5ed15538502b462 (diff) | |
| download | bcm5719-llvm-9cee5e0e92e34348ca9a798c81b51a3497154e3f.tar.gz bcm5719-llvm-9cee5e0e92e34348ca9a798c81b51a3497154e3f.zip | |
PGO: Moving files for clarity
<rdar://problem/15943240>
llvm-svn: 204373
| -rw-r--r-- | compiler-rt/lib/profile/CMakeLists.txt | 4 | ||||
| -rw-r--r-- | compiler-rt/lib/profile/InstrProfilingPlatformDarwin.c (renamed from compiler-rt/lib/profile/InstrProfilingDarwin.c) | 0 | ||||
| -rw-r--r-- | compiler-rt/lib/profile/InstrProfilingPlatformOther.c (renamed from compiler-rt/lib/profile/InstrProfilingDefault.c) | 0 | ||||
| -rw-r--r-- | compiler-rt/make/platform/clang_darwin.mk | 2 |
4 files changed, 3 insertions, 3 deletions
diff --git a/compiler-rt/lib/profile/CMakeLists.txt b/compiler-rt/lib/profile/CMakeLists.txt index e0e816d2cbe..7de9c5e4b9b 100644 --- a/compiler-rt/lib/profile/CMakeLists.txt +++ b/compiler-rt/lib/profile/CMakeLists.txt @@ -6,7 +6,7 @@ if(APPLE) set(PROFILE_SOURCES GCDAProfiling.c InstrProfiling.c - InstrProfilingDarwin.c + InstrProfilingPlatformDarwin.c InstrProfilingExtras.c) add_compiler_rt_osx_static_runtime(clang_rt.profile_osx @@ -17,7 +17,7 @@ else() set(PROFILE_SOURCES GCDAProfiling.c InstrProfiling.c - InstrProfilingDefault.c + InstrProfilingPlatformOther.c InstrProfilingExtras.c) foreach(arch ${PROFILE_SUPPORTED_ARCH}) diff --git a/compiler-rt/lib/profile/InstrProfilingDarwin.c b/compiler-rt/lib/profile/InstrProfilingPlatformDarwin.c index de388ee5ebd..de388ee5ebd 100644 --- a/compiler-rt/lib/profile/InstrProfilingDarwin.c +++ b/compiler-rt/lib/profile/InstrProfilingPlatformDarwin.c diff --git a/compiler-rt/lib/profile/InstrProfilingDefault.c b/compiler-rt/lib/profile/InstrProfilingPlatformOther.c index d39f39f3718..d39f39f3718 100644 --- a/compiler-rt/lib/profile/InstrProfilingDefault.c +++ b/compiler-rt/lib/profile/InstrProfilingPlatformOther.c diff --git a/compiler-rt/make/platform/clang_darwin.mk b/compiler-rt/make/platform/clang_darwin.mk index f4676e01a72..0feb553417b 100644 --- a/compiler-rt/make/platform/clang_darwin.mk +++ b/compiler-rt/make/platform/clang_darwin.mk @@ -223,7 +223,7 @@ FUNCTIONS.ios.x86_64h := $(FUNCTIONS.ios.x86_64) FUNCTIONS.osx := mulosi4 mulodi4 muloti4 FUNCTIONS.profile_osx := GCDAProfiling InstrProfiling \ - InstrProfilingDarwin InstrProfilingExtras + InstrProfilingPlatformDarwin InstrProfilingExtras FUNCTIONS.profile_ios := $(FUNCTIONS.profile_osx) FUNCTIONS.asan_osx_dynamic := $(AsanFunctions) $(InterceptionFunctions) \ |

