summaryrefslogtreecommitdiffstats
path: root/contrib/libs/llvm14/lib/Analysis/Interval.cpp
diff options
context:
space:
mode:
authorrobot-piglet <[email protected]>2025-03-05 13:38:11 +0300
committerrobot-piglet <[email protected]>2025-03-05 13:49:53 +0300
commit9eed360f02de773a5ed2de5d2a3e81fc7f06acfa (patch)
tree744a4054e64eb443073c7c6ad36b29cedcf9c2e6 /contrib/libs/llvm14/lib/Analysis/Interval.cpp
parentc141a5c40bda2eed1a68b0626ffdae5fd19359a6 (diff)
Intermediate changes
commit_hash:2ec2671384dd8e604d41bc5c52c2f7858e4afea6
Diffstat (limited to 'contrib/libs/llvm14/lib/Analysis/Interval.cpp')
-rw-r--r--contrib/libs/llvm14/lib/Analysis/Interval.cpp40
1 files changed, 0 insertions, 40 deletions
diff --git a/contrib/libs/llvm14/lib/Analysis/Interval.cpp b/contrib/libs/llvm14/lib/Analysis/Interval.cpp
deleted file mode 100644
index e228ec4f212..00000000000
--- a/contrib/libs/llvm14/lib/Analysis/Interval.cpp
+++ /dev/null
@@ -1,40 +0,0 @@
-//===- Interval.cpp - Interval class code ---------------------------------===//
-//
-// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
-// See https://llvm.org/LICENSE.txt for license information.
-// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
-//
-//===----------------------------------------------------------------------===//
-//
-// This file contains the definition of the Interval class, which represents a
-// partition of a control flow graph of some kind.
-//
-//===----------------------------------------------------------------------===//
-
-#include "llvm/Analysis/Interval.h"
-#include "llvm/IR/BasicBlock.h"
-#include "llvm/IR/CFG.h"
-#include "llvm/Support/raw_ostream.h"
-
-using namespace llvm;
-
-//===----------------------------------------------------------------------===//
-// Interval Implementation
-//===----------------------------------------------------------------------===//
-
-void Interval::print(raw_ostream &OS) const {
- OS << "-------------------------------------------------------------\n"
- << "Interval Contents:\n";
-
- // Print out all of the basic blocks in the interval...
- for (const BasicBlock *Node : Nodes)
- OS << *Node << "\n";
-
- OS << "Interval Predecessors:\n";
- for (const BasicBlock *Predecessor : Predecessors)
- OS << *Predecessor << "\n";
-
- OS << "Interval Successors:\n";
- for (const BasicBlock *Successor : Successors)
- OS << *Successor << "\n";
-}