summaryrefslogtreecommitdiffstats
path: root/gnu/llvm/lib/Analysis/Interval.cpp
diff options
context:
space:
mode:
authorpatrick <patrick@openbsd.org>2018-04-06 14:26:03 +0000
committerpatrick <patrick@openbsd.org>2018-04-06 14:26:03 +0000
commitbdabc2f19ffb9e20600dad6e8a300842a7bda50e (patch)
treec50e7b2e5449b074651bb82a58517a8ebc4a8cf7 /gnu/llvm/lib/Analysis/Interval.cpp
parentPrint a 'p' flag for file descriptors that were opened after pledge(2). (diff)
downloadwireguard-openbsd-bdabc2f19ffb9e20600dad6e8a300842a7bda50e.tar.xz
wireguard-openbsd-bdabc2f19ffb9e20600dad6e8a300842a7bda50e.zip
Import LLVM 6.0.1 release including clang, lld and lldb.
"where is the kaboom?" deraadt@
Diffstat (limited to 'gnu/llvm/lib/Analysis/Interval.cpp')
-rw-r--r--gnu/llvm/lib/Analysis/Interval.cpp3
1 files changed, 0 insertions, 3 deletions
diff --git a/gnu/llvm/lib/Analysis/Interval.cpp b/gnu/llvm/lib/Analysis/Interval.cpp
index 6c10d73bcb4..6d5de22cb93 100644
--- a/gnu/llvm/lib/Analysis/Interval.cpp
+++ b/gnu/llvm/lib/Analysis/Interval.cpp
@@ -16,7 +16,6 @@
#include "llvm/IR/BasicBlock.h"
#include "llvm/IR/CFG.h"
#include "llvm/Support/raw_ostream.h"
-#include <algorithm>
using namespace llvm;
@@ -25,7 +24,6 @@ using namespace llvm;
//===----------------------------------------------------------------------===//
// isLoop - Find out if there is a back edge in this interval...
-//
bool Interval::isLoop() const {
// There is a loop in this interval iff one of the predecessors of the header
// node lives in the interval.
@@ -36,7 +34,6 @@ bool Interval::isLoop() const {
return false;
}
-
void Interval::print(raw_ostream &OS) const {
OS << "-------------------------------------------------------------\n"
<< "Interval Contents:\n";