summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDouglas Gregor <dgregor@apple.com>2013-05-15 17:41:02 +0000
committerDouglas Gregor <dgregor@apple.com>2013-05-15 17:41:02 +0000
commitdf6e5fb77ca864c55735b903eb022fb1e38fa3d2 (patch)
tree21a7d8ec570db771c34d8612abce9591d03ddf8c
parent6fc631978cdd1128a790854e497e267639d9325d (diff)
downloadllvm-df6e5fb77ca864c55735b903eb022fb1e38fa3d2.tar.gz
llvm-df6e5fb77ca864c55735b903eb022fb1e38fa3d2.tar.bz2
llvm-df6e5fb77ca864c55735b903eb022fb1e38fa3d2.tar.xz
Add missing #include
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@181900 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--include/llvm/ADT/PointerUnion.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/include/llvm/ADT/PointerUnion.h b/include/llvm/ADT/PointerUnion.h
index b63ee52cdd..c1a6d74412 100644
--- a/include/llvm/ADT/PointerUnion.h
+++ b/include/llvm/ADT/PointerUnion.h
@@ -15,6 +15,7 @@
#ifndef LLVM_ADT_POINTERUNION_H
#define LLVM_ADT_POINTERUNION_H
+#include "llvm/Support/Compiler.h"
#include "llvm/ADT/PointerIntPair.h"
namespace llvm {