Chandler Carruth | 3bab7e1 | 2017-01-11 09:43:56 +0000 | [diff] [blame] | 1 | //===- IVUsersPrinter.cpp - Induction Variable Users Printer ----*- C++ -*-===// |
| 2 | // |
Chandler Carruth | 2946cd7 | 2019-01-19 08:50:56 +0000 | [diff] [blame] | 3 | // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. |
| 4 | // See https://llvm.org/LICENSE.txt for license information. |
| 5 | // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception |
Chandler Carruth | 3bab7e1 | 2017-01-11 09:43:56 +0000 | [diff] [blame] | 6 | // |
| 7 | //===----------------------------------------------------------------------===// |
| 8 | |
| 9 | #include "llvm/Transforms/Scalar/IVUsersPrinter.h" |
| 10 | #include "llvm/Analysis/IVUsers.h" |
| 11 | #include "llvm/Support/Debug.h" |
| 12 | using namespace llvm; |
| 13 | |
| 14 | #define DEBUG_TYPE "iv-users" |
| 15 | |
| 16 | PreservedAnalyses IVUsersPrinterPass::run(Loop &L, LoopAnalysisManager &AM, |
| 17 | LoopStandardAnalysisResults &AR, |
| 18 | LPMUpdater &U) { |
| 19 | AM.getResult<IVUsersAnalysis>(L, AR).print(OS); |
| 20 | return PreservedAnalyses::all(); |
| 21 | } |