diff options
author | 2020-11-23 17:02:44 -0500 | |
---|---|---|
committer | 2020-12-01 18:28:38 -0500 | |
commit | bf4f55f1803be9041c917bb1fba96403f0431725 (patch) | |
tree | 843d5488265482ad22ad7ecd8ac157414cc5a3b8 /cc/compiler.go | |
parent | 464e6c71dfb7fa19b21446fa3c0fbb76addc932b (diff) |
Improve commenting for cc/builer.go, and kill dead code
Test: m nothing
Change-Id: I836c717d3243e901257120be71246e419de4d28e
Diffstat (limited to 'cc/compiler.go')
-rw-r--r-- | cc/compiler.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cc/compiler.go b/cc/compiler.go index 04ed80db9..f71dccab6 100644 --- a/cc/compiler.go +++ b/cc/compiler.go @@ -649,7 +649,7 @@ func (compiler *baseCompiler) compile(ctx ModuleContext, flags Flags, deps PathD func compileObjs(ctx android.ModuleContext, flags builderFlags, subdir string, srcFiles, pathDeps android.Paths, cFlagsDeps android.Paths) Objects { - return TransformSourceToObj(ctx, subdir, srcFiles, flags, pathDeps, cFlagsDeps) + return transformSourceToObj(ctx, subdir, srcFiles, flags, pathDeps, cFlagsDeps) } var thirdPartyDirPrefixExceptions = []*regexp.Regexp{ |