aboutsummaryrefslogtreecommitdiffstats
path: root/cc
diff options
context:
space:
mode:
authorColin Cross <ccross@android.com>2018-02-23 02:44:01 +0000
committerandroid-build-merger <android-build-merger@google.com>2018-02-23 02:44:01 +0000
commit10c7d51f6d9db1092342f6958b36ebec6ed4cc47 (patch)
tree84c546a062afedf645a88ba41ccde4a7393bbca0 /cc
parent88c6509e99fc3359ecf756aadbe02771e546fb56 (diff)
parent945aebf48e4469f05c20dfe63a94c4a37ad790cf (diff)
downloadbuild_soong-10c7d51f6d9db1092342f6958b36ebec6ed4cc47.tar.gz
build_soong-10c7d51f6d9db1092342f6958b36ebec6ed4cc47.tar.bz2
build_soong-10c7d51f6d9db1092342f6958b36ebec6ed4cc47.zip
Merge changes If1894fd9,Id7925999,I4fe11c3f,Iea2b0781,Id2c0a503 am: 1b5599e462 am: b3407069ee
am: 945aebf48e Change-Id: Ie14264d306d957f92beca7070867d947773692b1
Diffstat (limited to 'cc')
-rw-r--r--cc/pgo.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/cc/pgo.go b/cc/pgo.go
index 779ef39d..10c8daca 100644
--- a/cc/pgo.go
+++ b/cc/pgo.go
@@ -102,7 +102,7 @@ func (props *PgoProperties) addProfileGatherFlags(ctx ModuleContext, flags Flags
func (props *PgoProperties) getPgoProfileFile(ctx BaseModuleContext) android.OptionalPath {
// Test if the profile_file is present in any of the PGO profile projects
for _, profileProject := range getPgoProfileProjects(ctx.DeviceConfig()) {
- path := android.ExistentPathForSource(ctx, "", profileProject, *props.Pgo.Profile_file)
+ path := android.ExistentPathForSource(ctx, profileProject, *props.Pgo.Profile_file)
if path.Valid() {
return path
}