From 9e76f90bc5255d6ec933d705bf99baf3ca80d5d5 Mon Sep 17 00:00:00 2001 From: xleroy Date: Tue, 10 Jul 2012 09:00:24 +0000 Subject: Updated ARM port. CSE.v: removed commented-out stuff. git-svn-id: https://yquem.inria.fr/compcert/svn/compcert/trunk@1966 fca1b0fc-160b-0410-b1d3-a4f43f01ea2e --- arm/CBuiltins.ml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'arm/CBuiltins.ml') diff --git a/arm/CBuiltins.ml b/arm/CBuiltins.ml index ea3c7df9..3be32e48 100644 --- a/arm/CBuiltins.ml +++ b/arm/CBuiltins.ml @@ -29,13 +29,13 @@ let builtins = { "__builtin_fsqrt", (TFloat(FDouble, []), [TFloat(FDouble, [])], false); (* Memory accesses *) - "__builtin_read_int16_reversed", + "__builtin_read16_reversed", (TInt(IUShort, []), [TPtr(TInt(IUShort, [AConst]), [])], false); - "__builtin_read_int32_reversed", + "__builtin_read32_reversed", (TInt(IUInt, []), [TPtr(TInt(IUInt, [AConst]), [])], false); - "__builtin_write_int16_reversed", + "__builtin_write16_reversed", (TVoid [], [TPtr(TInt(IUShort, []), []); TInt(IUShort, [])], false); - "__builtin_write_int32_reversed", + "__builtin_write32_reversed", (TVoid [], [TPtr(TInt(IUInt, []), []); TInt(IUInt, [])], false); ] } -- cgit