Deleted Added
full compact
MachineCodeInfo.h (225736) MachineCodeInfo.h (252723)
1//===-- MachineCodeInfo.h - Class used to report JIT info -------*- 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 defines MachineCodeInfo, a class used by the JIT ExecutionEngine
11// to report information about the generated machine code.
12//
13// See JIT::runJITOnFunction for usage.
14//
15//===----------------------------------------------------------------------===//
16
1//===-- MachineCodeInfo.h - Class used to report JIT info -------*- 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 defines MachineCodeInfo, a class used by the JIT ExecutionEngine
11// to report information about the generated machine code.
12//
13// See JIT::runJITOnFunction for usage.
14//
15//===----------------------------------------------------------------------===//
16
17#ifndef EE_MACHINE_CODE_INFO_H
18#define EE_MACHINE_CODE_INFO_H
17#ifndef LLVM_CODEGEN_MACHINECODEINFO_H
18#define LLVM_CODEGEN_MACHINECODEINFO_H
19
20#include "llvm/Support/DataTypes.h"
21
22namespace llvm {
23
24class MachineCodeInfo {
25private:
26 size_t Size; // Number of bytes in memory used

--- 27 unchanged lines hidden ---
19
20#include "llvm/Support/DataTypes.h"
21
22namespace llvm {
23
24class MachineCodeInfo {
25private:
26 size_t Size; // Number of bytes in memory used

--- 27 unchanged lines hidden ---