mirror of git://gcc.gnu.org/git/gcc.git
gomp-constants.h (GOMP_VERSION): Increment to 1...
2016-05-26 Chung-Lin Tang <cltang@codesourcery.com> include/ * gomp-constants.h (GOMP_VERSION): Increment to 1, add comment to describe the need for incrementing this macro whenever the plugin interface is modified. From-SVN: r236766
This commit is contained in:
parent
2116e19f83
commit
06fca33def
|
|
@ -1,3 +1,9 @@
|
||||||
|
2016-05-26 Chung-Lin Tang <cltang@codesourcery.com>
|
||||||
|
|
||||||
|
* gomp-constants.h (GOMP_VERSION): Increment to 1, add comment to
|
||||||
|
describe the need for incrementing this macro whenever the plugin
|
||||||
|
interface is modified.
|
||||||
|
|
||||||
2016-04-29 Tom Tromey <tom@tromey.com>
|
2016-04-29 Tom Tromey <tom@tromey.com>
|
||||||
|
|
||||||
* dwarf2.h (enum dwarf_source_language) <DW_LANG_Rust,
|
* dwarf2.h (enum dwarf_source_language) <DW_LANG_Rust,
|
||||||
|
|
|
||||||
|
|
@ -196,8 +196,10 @@ enum gomp_map_kind
|
||||||
/* Internal to libgomp. */
|
/* Internal to libgomp. */
|
||||||
#define GOMP_TARGET_FLAG_UPDATE (1U << 31)
|
#define GOMP_TARGET_FLAG_UPDATE (1U << 31)
|
||||||
|
|
||||||
/* Versions of libgomp and device-specific plugins. */
|
/* Versions of libgomp and device-specific plugins. GOMP_VERSION
|
||||||
#define GOMP_VERSION 0
|
should be incremented whenever an ABI-incompatible change is introduced
|
||||||
|
to the plugin interface defined in libgomp/libgomp.h. */
|
||||||
|
#define GOMP_VERSION 1
|
||||||
#define GOMP_VERSION_NVIDIA_PTX 1
|
#define GOMP_VERSION_NVIDIA_PTX 1
|
||||||
#define GOMP_VERSION_INTEL_MIC 0
|
#define GOMP_VERSION_INTEL_MIC 0
|
||||||
#define GOMP_VERSION_HSA 0
|
#define GOMP_VERSION_HSA 0
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue