From 8624d7b72ec4b5625ea035dff2e745c2c214ad49 Mon Sep 17 00:00:00 2001 From: Gordon Henriksen Date: Thu, 3 Jan 2008 03:21:18 +0000 Subject: [PATCH] Fix a compile error on Windows. llvm-svn: 45528 --- llvm/lib/VMCore/ParameterAttributes.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/llvm/lib/VMCore/ParameterAttributes.cpp b/llvm/lib/VMCore/ParameterAttributes.cpp index b6c29922a61e..53f13405f423 100644 --- a/llvm/lib/VMCore/ParameterAttributes.cpp +++ b/llvm/lib/VMCore/ParameterAttributes.cpp @@ -13,6 +13,8 @@ #include "llvm/ParameterAttributes.h" #include "llvm/Support/ManagedStatic.h" +#include + using namespace llvm; static ManagedStatic > ParamAttrsLists;