]> git.proxmox.com Git - ceph.git/blame - ceph/src/boost/boost/predef/hardware/simd/arm/versions.h
update source to Ceph Pacific 16.2.2
[ceph.git] / ceph / src / boost / boost / predef / hardware / simd / arm / 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_ARM_VERSIONS_H
10#define BOOST_PREDEF_HARDWARE_SIMD_ARM_VERSIONS_H
11
12#include <boost/predef/version_number.h>
13
f67539c2
TL
14/* tag::reference[]
15= `BOOST_HW_SIMD_ARM_*_VERSION`
7c673cae 16
f67539c2
TL
17Those defines represent ARM SIMD extensions versions.
18
19NOTE: You *MUST* compare them with the predef `BOOST_HW_SIMD_ARM`.
20*/ // end::reference[]
7c673cae
FG
21
22// ---------------------------------
23
f67539c2
TL
24/* tag::reference[]
25= `BOOST_HW_SIMD_ARM_NEON_VERSION`
7c673cae 26
f67539c2
TL
27The https://en.wikipedia.org/wiki/ARM_architecture#Advanced_SIMD_.28NEON.29[NEON]
28ARM extension version number.
7c673cae 29
f67539c2
TL
30Version number is: *1.0.0*.
31*/ // end::reference[]
7c673cae
FG
32#define BOOST_HW_SIMD_ARM_NEON_VERSION BOOST_VERSION_NUMBER(1, 0, 0)
33
f67539c2
TL
34/* tag::reference[]
35
36*/ // end::reference[]
37
7c673cae 38#endif