Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 555598 | Differences between
and this patch

Collapse All | Expand All

(-)ocaml-3.12.1/byterun/signals_machdep.h.orig (-1 / +1 lines)
Lines 18-24 Link Here
18
#ifndef CAML_SIGNALS_MACHDEP_H
18
#ifndef CAML_SIGNALS_MACHDEP_H
19
#define CAML_SIGNALS_MACHDEP_H
19
#define CAML_SIGNALS_MACHDEP_H
20
20
21
#if defined(__GNUC__) && defined(__i386__)
21
#if defined(__GNUC__) && (defined(__i386__) || (defined(__x86_64__) && !defined(__LP64__)))
22
22
23
#define Read_and_clear(dst,src) \
23
#define Read_and_clear(dst,src) \
24
  asm("xorl %0, %0; xchgl %0, %1" \
24
  asm("xorl %0, %0; xchgl %0, %1" \
(-)ocaml-3.12.1/otherlibs/num/bng.c.orig (-1 / +1 lines)
Lines 17-23 Link Here
17
#include "config.h"
17
#include "config.h"
18
18
19
#if defined(__GNUC__) && BNG_ASM_LEVEL > 0
19
#if defined(__GNUC__) && BNG_ASM_LEVEL > 0
20
#if defined(BNG_ARCH_ia32)
20
#if defined(BNG_ARCH_ia32) || (defined(BNG_ARCH_amd64) && !defined(__LP64__))
21
#include "bng_ia32.c"
21
#include "bng_ia32.c"
22
#elif defined(BNG_ARCH_amd64)
22
#elif defined(BNG_ARCH_amd64)
23
#include "bng_amd64.c"
23
#include "bng_amd64.c"

Return to bug 555598