thepeg is hosted by Hepforge, IPPP Durham
ThePEG 2.3.0
fpudebug.h
1#ifndef fpudebug_H
2#define fpudebug_H
3
4#include <fpu_control.h>
5
7void fpudebug() {
8 fpu_control_t cw;
9 _FPU_GETCW(cw);
10 cw &= ~(_FPU_MASK_OM);
11 cw &= ~(_FPU_MASK_ZM);
12 cw &= ~(_FPU_MASK_DM);
13 cw &= ~(_FPU_MASK_IM);
14 _FPU_SETCW(cw);
15}
16
17#endif