Deleted Added
full compact
BlockFrequency.h (226633) BlockFrequency.h (234353)
1//===-------- BlockFrequency.h - Block Frequency Wrapper --------*- 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//
10// This file implements Block Frequency class.
11//
12//===----------------------------------------------------------------------===//
13
14#ifndef LLVM_SUPPORT_BLOCKFREQUENCY_H
15#define LLVM_SUPPORT_BLOCKFREQUENCY_H
16
1//===-------- BlockFrequency.h - Block Frequency Wrapper --------*- 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//
10// This file implements Block Frequency class.
11//
12//===----------------------------------------------------------------------===//
13
14#ifndef LLVM_SUPPORT_BLOCKFREQUENCY_H
15#define LLVM_SUPPORT_BLOCKFREQUENCY_H
16
17#include "llvm/Support/DataTypes.h"
18
17namespace llvm {
18
19class raw_ostream;
20class BranchProbability;
21
22// This class represents Block Frequency as a 64-bit value.
23class BlockFrequency {
24

--- 39 unchanged lines hidden ---
19namespace llvm {
20
21class raw_ostream;
22class BranchProbability;
23
24// This class represents Block Frequency as a 64-bit value.
25class BlockFrequency {
26

--- 39 unchanged lines hidden ---