From 8902c885d609ebdd35eb6bbb080e27954b97dac4 Mon Sep 17 00:00:00 2001 From: Clement Courbet Date: Thu, 25 Oct 2018 08:06:35 +0000 Subject: [PATCH] [llvm-exegesis] Fix warning in r345243. warning C4099: 'llvm::exegesis::PfmCountersInfo': type name first seen using 'class' now seen using 'struct' llvm-svn: 345244 --- llvm/tools/llvm-exegesis/lib/LlvmState.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/llvm/tools/llvm-exegesis/lib/LlvmState.h b/llvm/tools/llvm-exegesis/lib/LlvmState.h index be1e797..159a8a5 100644 --- a/llvm/tools/llvm-exegesis/lib/LlvmState.h +++ b/llvm/tools/llvm-exegesis/lib/LlvmState.h @@ -30,7 +30,7 @@ namespace llvm { namespace exegesis { class ExegesisTarget; -class PfmCountersInfo; +struct PfmCountersInfo; // An object to initialize LLVM and prepare objects needed to run the // measurements. -- 2.7.4