From 8d72414f9e42da74c16a7408756ae098f8b097c5 Mon Sep 17 00:00:00 2001 From: Maria Kotsifakou <kotsifa2@illinois.edu> Date: Thu, 6 Dec 2018 17:32:52 -0600 Subject: [PATCH] Modified header for dummy frontend function for wait in visc.h --- llvm/test/VISC/DNN_Benchmarks/common/include/visc.h | 3 +-- llvm/test/VISC/parboil/common/include/visc.h | 3 +-- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/llvm/test/VISC/DNN_Benchmarks/common/include/visc.h b/llvm/test/VISC/DNN_Benchmarks/common/include/visc.h index f7d534a5d9..2b778e8848 100644 --- a/llvm/test/VISC/DNN_Benchmarks/common/include/visc.h +++ b/llvm/test/VISC/DNN_Benchmarks/common/include/visc.h @@ -15,10 +15,8 @@ #ifdef __cplusplus extern "C" { void __visc__hint(visc::Target); -void __visc__wait(void*); #else void __visc__hint(enum Target); -void __visc__wait(unsigned); #endif #ifdef __cplusplus @@ -40,6 +38,7 @@ void* __visc__edge(void*, void*, unsigned, unsigned, unsigned, unsigned); void __visc__push(void*, void*); void* __visc__pop(void*); void* __visc__launch(unsigned, ...); +void __visc__wait(void*); void* __visc__getNode(); void* __visc__getParentNode(void*); diff --git a/llvm/test/VISC/parboil/common/include/visc.h b/llvm/test/VISC/parboil/common/include/visc.h index f25c3cc4dc..684cda5226 100644 --- a/llvm/test/VISC/parboil/common/include/visc.h +++ b/llvm/test/VISC/parboil/common/include/visc.h @@ -15,10 +15,8 @@ #ifdef __cplusplus extern "C" { void __visc__hint(visc::Target); -void __visc__wait(void*); #else void __visc__hint(enum Target); -void __visc__wait(unsigned); #endif #ifdef __cplusplus @@ -40,6 +38,7 @@ void* __visc__edge(void*, void*, unsigned, unsigned, unsigned, unsigned); void __visc__push(void*, void*); void* __visc__pop(void*); void* __visc__launch(unsigned, ...); +void __visc__wait(void*); void* __visc__getNode(); void* __visc__getParentNode(void*); -- GitLab