From bfb00494eb2ffaf4fbf68a8ecabe9e503f4cdf65 Mon Sep 17 00:00:00 2001 From: Thomas Preud'homme Date: Wed, 14 Mar 2012 15:39:16 +0100 Subject: Fix removal of vnrott Make vrotb ST_FUNC so that arm-gen.c can use vrotb. --- tccgen.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tccgen.c') diff --git a/tccgen.c b/tccgen.c index 9339b5f..5b9f50a 100644 --- a/tccgen.c +++ b/tccgen.c @@ -961,7 +961,7 @@ static void lbuild(int t) /* rotate n first stack elements to the bottom I1 ... In -> I2 ... In I1 [top is right] */ -static void vrotb(int n) +ST_FUNC void vrotb(int n) { int i; SValue tmp; -- cgit v1.3.1