Deleted Added
full compact
PassAnalysisSupport.h (221345) PassAnalysisSupport.h (234353)
1//===- llvm/PassAnalysisSupport.h - Analysis Pass Support code --*- 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//===----------------------------------------------------------------------===//

--- 5 unchanged lines hidden (view full) ---

14//
15// Instead, #include Pass.h
16//
17//===----------------------------------------------------------------------===//
18
19#ifndef LLVM_PASS_ANALYSIS_SUPPORT_H
20#define LLVM_PASS_ANALYSIS_SUPPORT_H
21
1//===- llvm/PassAnalysisSupport.h - Analysis Pass Support code --*- 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//===----------------------------------------------------------------------===//

--- 5 unchanged lines hidden (view full) ---

14//
15// Instead, #include Pass.h
16//
17//===----------------------------------------------------------------------===//
18
19#ifndef LLVM_PASS_ANALYSIS_SUPPORT_H
20#define LLVM_PASS_ANALYSIS_SUPPORT_H
21
22#include "llvm/Pass.h"
22#include "llvm/ADT/SmallVector.h"
23#include "llvm/ADT/StringRef.h"
24#include <vector>
25
26namespace llvm {
27
28//===----------------------------------------------------------------------===//
29// AnalysisUsage - Represent the analysis usage information of a pass. This

--- 223 unchanged lines hidden ---
23#include "llvm/ADT/SmallVector.h"
24#include "llvm/ADT/StringRef.h"
25#include <vector>
26
27namespace llvm {
28
29//===----------------------------------------------------------------------===//
30// AnalysisUsage - Represent the analysis usage information of a pass. This

--- 223 unchanged lines hidden ---