OSDN Git Service

Add missing includes.
authorVassil Vassilev <v.g.vassilev@gmail.com>
Tue, 28 Jun 2016 12:17:05 +0000 (12:17 +0000)
committerVassil Vassilev <v.g.vassilev@gmail.com>
Tue, 28 Jun 2016 12:17:05 +0000 (12:17 +0000)
Patch by Cristina Cristescu.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@274004 91177308-0d34-0410-b5e6-96231b3b80d8

include/llvm/CodeGen/PBQP/Graph.h
include/llvm/IR/UseListOrder.h

index 212599a..8301ca4 100644 (file)
@@ -16,6 +16,9 @@
 #define LLVM_CODEGEN_PBQP_GRAPH_H
 
 #include "llvm/Support/Debug.h"
+#include <algorithm>
+#include <cassert>
+#include <limits>
 #include <utility>
 #include <vector>
 
index e549297..b86425b 100644 (file)
@@ -15,6 +15,7 @@
 #ifndef LLVM_IR_USELISTORDER_H
 #define LLVM_IR_USELISTORDER_H
 
+#include <cstddef>
 #include <vector>
 
 namespace llvm {