]> git.proxmox.com Git - ceph.git/blame - ceph/src/boost/libs/predef/include/boost/predef/hardware/simd/ppc/versions.h
bump version to 12.2.2-pve1
[ceph.git] / ceph / src / boost / libs / predef / include / boost / predef / hardware / simd / ppc / versions.h
CommitLineData
7c673cae
FG
1/*
2Copyright Charly Chevalier 2015
3Copyright Joel Falcou 2015
4Distributed under the Boost Software License, Version 1.0.
5(See accompanying file LICENSE_1_0.txt or copy at
6http://www.boost.org/LICENSE_1_0.txt)
7*/
8
9#ifndef BOOST_PREDEF_HARDWARE_SIMD_PPC_VERSIONS_H
10#define BOOST_PREDEF_HARDWARE_SIMD_PPC_VERSIONS_H
11
12#include <boost/predef/version_number.h>
13
14/*`
15 Those defines represent Power PC SIMD extensions versions.
16
17 [note You *MUST* compare them with the predef `BOOST_HW_SIMD_PPC`.]
18 */
19
20// ---------------------------------
21
22/*`
23 [heading `BOOST_HW_SIMD_PPC_VMX_VERSION`]
24
25 The [@https://en.wikipedia.org/wiki/AltiVec#VMX128 VMX] powerpc extension
26 version number.
27
28 Version number is: *1.0.0*.
29 */
30#define BOOST_HW_SIMD_PPC_VMX_VERSION BOOST_VERSION_NUMBER(1, 0, 0)
31
32/*`
33 [heading `BOOST_HW_SIMD_PPC_VSX_VERSION`]
34
35 The [@https://en.wikipedia.org/wiki/AltiVec#VSX VSX] powerpc extension version
36 number.
37
38 Version number is: *1.1.0*.
39 */
40#define BOOST_HW_SIMD_PPC_VSX_VERSION BOOST_VERSION_NUMBER(1, 1, 0)
41
42/*`
43 [heading `BOOST_HW_SIMD_PPC_QPX_VERSION`]
44
45 The QPX powerpc extension version number.
46
47 Version number is: *2.0.0*.
48 */
49#define BOOST_HW_SIMD_PPC_QPX_VERSION BOOST_VERSION_NUMBER(2, 0, 0)
50
51#endif