1 //===- PassInstrumentation.cpp - Pass Instrumentation interface -*- C++ -*-===// 2 // 3 // The LLVM Compiler Infrastructure 4 // 5 // This file is distributed under the University of Illinois Open Source 6 // License. See LICENSE.TXT for details. 7 // 8 //===----------------------------------------------------------------------===// 9 /// \file 10 /// 11 /// This file provides the implementation of PassInstrumentation class. 12 /// 13 //===----------------------------------------------------------------------===// 14 15 #include "llvm/IR/PassInstrumentation.h" 16 #include "llvm/IR/PassManager.h" 17 18 namespace llvm { 19 20 AnalysisKey PassInstrumentationAnalysis::Key; 21 22 } // namespace llvm 23