From 4a63e53373f92adb2261ff5554ec633001ed0eee Mon Sep 17 00:00:00 2001 From: Alexey Bataev Date: Tue, 26 Jan 2021 07:43:31 -0500 Subject: [PATCH] [LIBOMPTARGET]FIX define declaration, NFC Fixed declaration of define by adding a comma symbol. Required to fix build without profiling. --- openmp/libomptarget/src/private.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/openmp/libomptarget/src/private.h b/openmp/libomptarget/src/private.h index 340ed23..ee42ef9 100644 --- a/openmp/libomptarget/src/private.h +++ b/openmp/libomptarget/src/private.h @@ -169,7 +169,7 @@ printKernelArguments(const ident_t *Loc, const int64_t DeviceId, #else #define TIMESCOPE() #define TIMESCOPE_WITH_IDENT(IDENT) -#define TIMESCOPE_WITH_NAME_AND_IDENT(NAME IDENT) +#define TIMESCOPE_WITH_NAME_AND_IDENT(NAME, IDENT) #endif #endif -- 2.7.4