From 25dd6f42944a9760cb73090b7af23c129c798c99 Mon Sep 17 00:00:00 2001 From: ROCm CI Service Account <66695075+rocm-ci@users.noreply.github.com> Date: Fri, 16 Sep 2022 02:54:05 +0530 Subject: [PATCH] SWDEV-352036 - Move HIPRTC_ERROR_LINKING to the end of the enum. (#2900) Change-Id: I0b847c3a82d988f4e7de21a2c2842081844b7a9f [ROCm/hip commit: b5a13dd89e170c0875060fd4afa7b885a0e1a88d] --- projects/hip/include/hip/hiprtc.h | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/projects/hip/include/hip/hiprtc.h b/projects/hip/include/hip/hiprtc.h index 61f7649305..2c421605ad 100644 --- a/projects/hip/include/hip/hiprtc.h +++ b/projects/hip/include/hip/hiprtc.h @@ -57,12 +57,12 @@ typedef enum hiprtcResult { HIPRTC_ERROR_INVALID_PROGRAM = 4, HIPRTC_ERROR_INVALID_OPTION = 5, HIPRTC_ERROR_COMPILATION = 6, - HIPRTC_ERROR_LINKING = 7, - HIPRTC_ERROR_BUILTIN_OPERATION_FAILURE = 8, - HIPRTC_ERROR_NO_NAME_EXPRESSIONS_AFTER_COMPILATION = 9, - HIPRTC_ERROR_NO_LOWERED_NAMES_BEFORE_COMPILATION = 10, - HIPRTC_ERROR_NAME_EXPRESSION_NOT_VALID = 11, - HIPRTC_ERROR_INTERNAL_ERROR = 12 + HIPRTC_ERROR_BUILTIN_OPERATION_FAILURE = 7, + HIPRTC_ERROR_NO_NAME_EXPRESSIONS_AFTER_COMPILATION = 8, + HIPRTC_ERROR_NO_LOWERED_NAMES_BEFORE_COMPILATION = 9, + HIPRTC_ERROR_NAME_EXPRESSION_NOT_VALID = 10, + HIPRTC_ERROR_INTERNAL_ERROR = 11, + HIPRTC_ERROR_LINKING = 100 } hiprtcResult; typedef enum hiprtcJIT_option {