aboutsummaryrefslogtreecommitdiff
path: root/vm/compiler/codegen/arm/RallocUtil.c
diff options
context:
space:
mode:
authorAndy McFadden <fadden@android.com>2010-09-17 15:48:38 -0700
committerAndy McFadden <fadden@android.com>2010-09-17 15:48:38 -0700
commit953a0ed4e507fd6e756aa3e5c671bee80d7e9b3e (patch)
treef913925521046e21f138c1704a97670c4bbefd1f /vm/compiler/codegen/arm/RallocUtil.c
parente50255299c3df62ce4dabccd16c1c0d89dad2e96 (diff)
Staticify.
Mark some functions "static". Change-Id: Ia80bccab1f72690729e43f99783d34fe366108b2
Diffstat (limited to 'vm/compiler/codegen/arm/RallocUtil.c')
-rw-r--r--vm/compiler/codegen/arm/RallocUtil.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/vm/compiler/codegen/arm/RallocUtil.c b/vm/compiler/codegen/arm/RallocUtil.c
index e917995fc..ff5d16be1 100644
--- a/vm/compiler/codegen/arm/RallocUtil.c
+++ b/vm/compiler/codegen/arm/RallocUtil.c
@@ -710,7 +710,7 @@ extern void dvmCompilerMarkInUse(CompilationUnit *cUnit, int reg)
info->inUse = true;
}
-void copyRegInfo(CompilationUnit *cUnit, int newReg, int oldReg)
+static void copyRegInfo(CompilationUnit *cUnit, int newReg, int oldReg)
{
RegisterInfo *newInfo = getRegInfo(cUnit, newReg);
RegisterInfo *oldInfo = getRegInfo(cUnit, oldReg);