cpu_defines.h revision 296373
1161370Simp// Specific definitions for generic platforms  -*- C++ -*-
2161370Simp
3157873Simp// Copyright (C) 2005 Free Software Foundation, Inc.
4161370Simp//
5161370Simp// This file is part of the GNU ISO C++ Library.  This library is free
6161370Simp// software; you can redistribute it and/or modify it under the
7161370Simp// terms of the GNU General Public License as published by the
8161370Simp// Free Software Foundation; either version 2, or (at your option)
9161370Simp// any later version.
10161370Simp
11161370Simp// This library is distributed in the hope that it will be useful,
12157873Simp// but WITHOUT ANY WARRANTY; without even the implied warranty of
13161370Simp// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14161370Simp// GNU General Public License for more details.
15161370Simp
16161370Simp// You should have received a copy of the GNU General Public License along
17161370Simp// with this library; see the file COPYING.  If not, write to the Free
18161370Simp// Software Foundation, 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,
19161370Simp// USA.
20161370Simp
21161370Simp// As a special exception, you may use this file as part of a free software
22161370Simp// library without restriction.  Specifically, if other files instantiate
23157873Simp// templates or use macros or inline functions from this file, or you compile
24161370Simp// this file and link it with other files to produce an executable, this
25161370Simp// file does not by itself cause the resulting executable to be covered by
26157873Simp// the GNU General Public License.  This exception does not however
27157873Simp// invalidate any other reasons why the executable file might be covered by
28157873Simp// the GNU General Public License.
29157873Simp
30157873Simp/** @file cpu_defines.h
31157873Simp *  This is an internal header file, included by other library headers.
32157873Simp *  You should not attempt to use it directly.
33157873Simp */
34157873Simp
35161370Simp#ifndef _GLIBCXX_CPU_DEFINES
36157873Simp#define _GLIBCXX_CPU_DEFINES 1
37157873Simp
38161370Simp// Integer divide instructions don't trap on PowerPC.
39157873Simp#define __glibcxx_integral_traps false
40157873Simp
41157873Simp#endif
42157873Simp