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-4.02.2/byterun/caml/signals_machdep.h.orig (-1 / +1 lines)
Lines 16-22 Link Here
16
#ifndef CAML_SIGNALS_MACHDEP_H
16
#ifndef CAML_SIGNALS_MACHDEP_H
17
#define CAML_SIGNALS_MACHDEP_H
17
#define CAML_SIGNALS_MACHDEP_H
18
18
19
#if defined(__GNUC__) && defined(__i386__)
19
#if defined(__GNUC__) && (defined(__i386__) || (defined(__x86_64__) && !defined(__LP64__)))
20
20
21
#define Read_and_clear(dst,src) \
21
#define Read_and_clear(dst,src) \
22
  asm("xorl %0, %0; xchgl %0, %1" \
22
  asm("xorl %0, %0; xchgl %0, %1" \
(-)ocaml-4.02.2/otherlibs/num/bng.c~ (-1 / +1 lines)
Lines 17-23 Link Here
17
#include "caml/config.h"
17
#include "caml/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