Add -fdebug-info-for-profiling flag to emit more debug info for sampling pgo

Test: m
Bug: 79161490
Change-Id: I25cfbf78b27d653286dc7f956743f8855b852b35
diff --git a/cc/pgo.go b/cc/pgo.go
index e341d03..6c39d83 100644
--- a/cc/pgo.go
+++ b/cc/pgo.go
@@ -41,7 +41,7 @@
 var pgoProfileProjectsConfigKey = android.NewOnceKey("PgoProfileProjects")
 
 const profileInstrumentFlag = "-fprofile-generate=/data/local/tmp"
-const profileSamplingFlag = "-gline-tables-only"
+const profileSamplingFlag = "-gmlt -fdebug-info-for-profiling"
 const profileUseInstrumentFormat = "-fprofile-use=%s"
 const profileUseSamplingFormat = "-fprofile-sample-use=%s"