aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGordon Henriksen <gordonhenriksen@mac.com>2008-01-03 03:21:18 +0000
committerGordon Henriksen <gordonhenriksen@mac.com>2008-01-03 03:21:18 +0000
commit98232f58599fc8f295e820adcb9146ed98ce5267 (patch)
tree0eddb058b6e1caeea28ca6d9377e6b02e41d61cf
parent02aabbf96b1f22144afe2bec8ad480a9b803f6b8 (diff)
Fix a compile error on Windows.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@45528 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--lib/VMCore/ParameterAttributes.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/VMCore/ParameterAttributes.cpp b/lib/VMCore/ParameterAttributes.cpp
index b6c29922a6..53f13405f4 100644
--- a/lib/VMCore/ParameterAttributes.cpp
+++ b/lib/VMCore/ParameterAttributes.cpp
@@ -13,6 +13,8 @@
#include "llvm/ParameterAttributes.h"
#include "llvm/Support/ManagedStatic.h"
+#include <cassert>
+
using namespace llvm;
static ManagedStatic<FoldingSet<ParamAttrsList> > ParamAttrsLists;