brintos

brintos / llvm-project-archived public Read only

0
0
Text · 807 B · 26f2db1 Raw
21 lines · cpp
1//===- IVUsersPrinter.cpp - Induction Variable Users Printer ----*- C++ -*-===//2//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-exception6//7//===----------------------------------------------------------------------===//8 9#include "llvm/Transforms/Scalar/IVUsersPrinter.h"10#include "llvm/Analysis/IVUsers.h"11using namespace llvm;12 13#define DEBUG_TYPE "iv-users"14 15PreservedAnalyses IVUsersPrinterPass::run(Loop &L, LoopAnalysisManager &AM,16                                          LoopStandardAnalysisResults &AR,17                                          LPMUpdater &U) {18  AM.getResult<IVUsersAnalysis>(L, AR).print(OS);19  return PreservedAnalyses::all();20}21