aboutsummaryrefslogtreecommitdiffstats
path: root/test/raytracer/gmlparser.c
diff options
context:
space:
mode:
authorxleroy <xleroy@fca1b0fc-160b-0410-b1d3-a4f43f01ea2e>2010-03-03 12:34:43 +0000
committerxleroy <xleroy@fca1b0fc-160b-0410-b1d3-a4f43f01ea2e>2010-03-03 12:34:43 +0000
commit6c196ec8a41d6ed506c133c8b33dba9684f9a7a6 (patch)
tree4e1422ea2a810520d0d9b0fbb78c0014ba9f8443 /test/raytracer/gmlparser.c
parent93d89c2b5e8497365be152fb53cb6cd4c5764d34 (diff)
downloadcompcert-kvx-6c196ec8a41d6ed506c133c8b33dba9684f9a7a6.tar.gz
compcert-kvx-6c196ec8a41d6ed506c133c8b33dba9684f9a7a6.zip
Updated raytracer test. Added SPASS test.
git-svn-id: https://yquem.inria.fr/compcert/svn/compcert/trunk@1271 fca1b0fc-160b-0410-b1d3-a4f43f01ea2e
Diffstat (limited to 'test/raytracer/gmlparser.c')
-rw-r--r--test/raytracer/gmlparser.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/raytracer/gmlparser.c b/test/raytracer/gmlparser.c
index b0a6cbc1..dc051052 100644
--- a/test/raytracer/gmlparser.c
+++ b/test/raytracer/gmlparser.c
@@ -82,7 +82,7 @@ static struct array * parse_tokenlist(void)
int i = 0;
while (parse_token(&t)) {
extend_array(struct tok, a);
- set_array_large(struct tok, a, i, t);
+ set_array(struct tok, a, i, t);
i++;
}
return a;