Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bug in mlvalues.h breaks build #8466

Closed
vicuna opened this issue Feb 2, 2004 · 2 comments
Closed

Bug in mlvalues.h breaks build #8466

vicuna opened this issue Feb 2, 2004 · 2 comments
Labels

Comments

@vicuna
Copy link

vicuna commented Feb 2, 2004

Original bug ID: 2121
Reporter: administrator
Status: closed
Resolution: fixed
Priority: normal
Severity: minor
Category: ~DO NOT USE (was: OCaml general)

Bug description

Full_Name: Ville-Pertti Keinonen
Version: CVS
OS:
Submission from: fa-3-0-0.fw.exomi.com (217.169.64.99)

For architectures that define ARCH_ALIGN_DOUBLE, the Store_double_val macro is
missing the second argument:

RCS file: /caml/ocaml/byterun/mlvalues.h,v
retrieving revision 1.47
diff -u -r1.47 mlvalues.h
--- mlvalues.h 2004/01/02 19:23:25 1.47
+++ mlvalues.h 2004/02/02 13:12:59
@@ -228,7 +228,7 @@
CAMLextern double caml_Double_val (value);
CAMLextern void caml_Store_double_val (value,double);
#define Double_val(v) caml_Double_val(v)
-#define Store_double_val(v) caml_Store_double_val(v)
+#define Store_double_val(v,d) caml_Store_double_val(v,d)
#endif

/* Arrays of floating-point numbers. */

@vicuna
Copy link
Author

vicuna commented Feb 2, 2004

Comment author: administrator

Full_Name: Ville-Pertti Keinonen

For architectures that define ARCH_ALIGN_DOUBLE, the Store_double_val macro
is
missing the second argument:

Thanks for the report. I fixed it in the CVS tree.

-- Damien

@vicuna
Copy link
Author

vicuna commented Feb 2, 2004

Comment author: administrator

fixed 2004-02-02 -DD

@vicuna vicuna closed this as completed Feb 2, 2004
@vicuna vicuna added the bug label Mar 19, 2019
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

1 participant