From ab58d32e67f1051748cee7cefbfffa0013733602 Mon Sep 17 00:00:00 2001 From: akashk4 <akashk4@illinois.edu> Date: Wed, 8 Jan 2020 18:58:51 -0600 Subject: [PATCH] Fix function declaration types to FunctionCallee --- hpvm/include/GenVISC/GenVISC.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/hpvm/include/GenVISC/GenVISC.h b/hpvm/include/GenVISC/GenVISC.h index 21ccf68b6f..b226a67f57 100644 --- a/hpvm/include/GenVISC/GenVISC.h +++ b/hpvm/include/GenVISC/GenVISC.h @@ -27,9 +27,9 @@ struct GenVISC : public ModulePass { private: // Member variables Module* M; - Constant* llvm_visc_initializeTimerSet; - Constant* llvm_visc_switchToTimer; - Constant* llvm_visc_printTimerSet; + FunctionCalleee llvm_visc_initializeTimerSet; + FunctionCalleee llvm_visc_switchToTimer; + FunctionCalleee llvm_visc_printTimerSet; GlobalVariable* TimerSet; -- GitLab