aboutsummaryrefslogtreecommitdiff
path: root/tccgen.c
diff options
context:
space:
mode:
authorThomas Preud'homme <robotux@celest.fr>2012-03-14 15:39:16 +0100
committerThomas Preud'homme <robotux@celest.fr>2012-03-14 15:39:16 +0100
commit53c5715cca20231c47ccef9d17d440334f4a318e (patch)
tree8f092ab0e62bb1130b6133137cc582cc5b67c0dc /tccgen.c
parent3d25213c16f937356f49655e485b53beea267c54 (diff)
downloadtinycc-53c5715cca20231c47ccef9d17d440334f4a318e.tar.gz
tinycc-53c5715cca20231c47ccef9d17d440334f4a318e.tar.bz2
Remove vnrott (duplicate vrotb)
Diffstat (limited to 'tccgen.c')
-rw-r--r--tccgen.c16
1 files changed, 0 insertions, 16 deletions
diff --git a/tccgen.c b/tccgen.c
index 3cf3715..5aa21c6 100644
--- a/tccgen.c
+++ b/tccgen.c
@@ -967,22 +967,6 @@ ST_FUNC void vrott(int n)
vtop[-n + 1] = tmp;
}
-#ifdef TCC_TARGET_ARM
-/* like vrott but in other direction
- In ... I1 -> I(n-1) ... I1 In [top is right]
- */
-ST_FUNC void vnrott(int n)
-{
- int i;
- SValue tmp;
-
- tmp = vtop[-n + 1];
- for(i = n - 1; i > 0; i--)
- vtop[-i] = vtop[-i + 1];
- vtop[0] = tmp;
-}
-#endif
-
/* pop stack value */
ST_FUNC void vpop(void)
{