This is the mail archive of the gcc-patches@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[cli] Fix incorrect builtin parameter type


Just fixed this.

--
Erven.


2010-02-12 Erven Rohou <erven.rohou@inria.fr>


* config/cil32/cil-builtins.def: Fix incorrect builtin parameter type.


Index: config/cil32/cil-builtins.def =================================================================== --- config/cil32/cil-builtins.def (revision 156626) +++ config/cil32/cil-builtins.def (working copy) @@ -223,11 +223,11 @@ DEF_CILBUILTIN(MONO_V2DF_CTOR, "[Mono.Simd]Mono.Simd.Vector2d::.ctor", double2_type_node, \ 2, \ - float_type_node, float_type_node) + double_type_node, double_type_node)

 DEF_CILBUILTIN(MONO_V2DF_CTOR_U, "[Mono.Simd]Mono.Simd.Vector2d::.ctor ",
               double2_type_node,               \
-              1, float_type_node)
+              1, double_type_node)

 DEF_CILBUILTIN(MONO_V2DF_LOAD_ALIGNED,
               "[Mono.Simd]Mono.Simd.Vector2d::LoadAligned",    \



Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]