From 4af1682d04244bab9f793e00eb24090153a36a0f Mon Sep 17 00:00:00 2001 From: xleroy Date: Thu, 28 Jul 2011 12:51:16 +0000 Subject: Added animation of the CompCert C semantics (ccomp -interp) test/regression: int main() so that interpretation works Revised once more implementation of __builtin_memcpy (to check for PPC & ARM) git-svn-id: https://yquem.inria.fr/compcert/svn/compcert/trunk@1688 fca1b0fc-160b-0410-b1d3-a4f43f01ea2e --- test/regression/volatile2.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'test/regression/volatile2.c') diff --git a/test/regression/volatile2.c b/test/regression/volatile2.c index d83927b2..06086509 100644 --- a/test/regression/volatile2.c +++ b/test/regression/volatile2.c @@ -8,7 +8,7 @@ *((ty *) &x) = v2; \ printf("%s 2: %s\n", msg, *((volatile ty *) &x) == v2 ? "OK" : "FAILED"); -int main(int argc, char ** argv) +int main() { signed char sc; unsigned char uc; -- cgit