diff options
Diffstat (limited to 'openmp/runtime/src/ompt-event-specific.h')
-rw-r--r-- | openmp/runtime/src/ompt-event-specific.h | 15 |
1 files changed, 12 insertions, 3 deletions
diff --git a/openmp/runtime/src/ompt-event-specific.h b/openmp/runtime/src/ompt-event-specific.h index 86ee6990569..4a36ef36ad6 100644 --- a/openmp/runtime/src/ompt-event-specific.h +++ b/openmp/runtime/src/ompt-event-specific.h @@ -1,6 +1,3 @@ -#ifndef __OMPT_EVENT_SPECIFIC_H__ -#define __OMPT_EVENT_SPECIFIC_H__ - /****************************************************************************** * File: ompt-event-specific.h * @@ -10,6 +7,18 @@ * and the level of their implementation by a runtime system. *****************************************************************************/ +//===----------------------------------------------------------------------===// +// +// The LLVM Compiler Infrastructure +// +// This file is dual licensed under the MIT and the University of Illinois Open +// Source Licenses. See LICENSE.txt for details. +// +//===----------------------------------------------------------------------===// + +#ifndef __OMPT_EVENT_SPECIFIC_H__ +#define __OMPT_EVENT_SPECIFIC_H__ + #define _ompt_tokenpaste_helper(x, y) x##y #define _ompt_tokenpaste(x, y) _ompt_tokenpaste_helper(x, y) #define ompt_event_implementation_status(e) _ompt_tokenpaste(e, _implemented) |