annotate tools/llvm-pdbutil/Analyze.h @ 133:c60214abe0e8

fix intrin.h
author mir3636
date Fri, 16 Feb 2018 19:10:49 +0900
parents 803732b1fca8
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
121
803732b1fca8 LLVM 5.0
kono
parents:
diff changeset
1 //===- Analyze.h - PDB analysis functions -----------------------*- C++ -*-===//
803732b1fca8 LLVM 5.0
kono
parents:
diff changeset
2 //
803732b1fca8 LLVM 5.0
kono
parents:
diff changeset
3 // The LLVM Compiler Infrastructure
803732b1fca8 LLVM 5.0
kono
parents:
diff changeset
4 //
803732b1fca8 LLVM 5.0
kono
parents:
diff changeset
5 // This file is distributed under the University of Illinois Open Source
803732b1fca8 LLVM 5.0
kono
parents:
diff changeset
6 // License. See LICENSE.TXT for details.
803732b1fca8 LLVM 5.0
kono
parents:
diff changeset
7 //
803732b1fca8 LLVM 5.0
kono
parents:
diff changeset
8 //===----------------------------------------------------------------------===//
803732b1fca8 LLVM 5.0
kono
parents:
diff changeset
9
803732b1fca8 LLVM 5.0
kono
parents:
diff changeset
10 #ifndef LLVM_TOOLS_LLVMPDBDUMP_ANALYSIS_H
803732b1fca8 LLVM 5.0
kono
parents:
diff changeset
11 #define LLVM_TOOLS_LLVMPDBDUMP_ANALYSIS_H
803732b1fca8 LLVM 5.0
kono
parents:
diff changeset
12
803732b1fca8 LLVM 5.0
kono
parents:
diff changeset
13 #include "OutputStyle.h"
803732b1fca8 LLVM 5.0
kono
parents:
diff changeset
14
803732b1fca8 LLVM 5.0
kono
parents:
diff changeset
15 namespace llvm {
803732b1fca8 LLVM 5.0
kono
parents:
diff changeset
16 namespace pdb {
803732b1fca8 LLVM 5.0
kono
parents:
diff changeset
17 class PDBFile;
803732b1fca8 LLVM 5.0
kono
parents:
diff changeset
18 class AnalysisStyle : public OutputStyle {
803732b1fca8 LLVM 5.0
kono
parents:
diff changeset
19 public:
803732b1fca8 LLVM 5.0
kono
parents:
diff changeset
20 explicit AnalysisStyle(PDBFile &File);
803732b1fca8 LLVM 5.0
kono
parents:
diff changeset
21
803732b1fca8 LLVM 5.0
kono
parents:
diff changeset
22 Error dump() override;
803732b1fca8 LLVM 5.0
kono
parents:
diff changeset
23
803732b1fca8 LLVM 5.0
kono
parents:
diff changeset
24 private:
803732b1fca8 LLVM 5.0
kono
parents:
diff changeset
25 PDBFile &File;
803732b1fca8 LLVM 5.0
kono
parents:
diff changeset
26 };
803732b1fca8 LLVM 5.0
kono
parents:
diff changeset
27 }
803732b1fca8 LLVM 5.0
kono
parents:
diff changeset
28 }
803732b1fca8 LLVM 5.0
kono
parents:
diff changeset
29
803732b1fca8 LLVM 5.0
kono
parents:
diff changeset
30 #endif