Deleted Added
full compact
Loads.h (243830) Loads.h (249423)
1//===- Loads.h - Local load analysis --------------------------------------===//
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 declares simple local analyses for load instructions.
11//
12//===----------------------------------------------------------------------===//
13
14#ifndef LLVM_ANALYSIS_LOADS_H
15#define LLVM_ANALYSIS_LOADS_H
16
1//===- Loads.h - Local load analysis --------------------------------------===//
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 declares simple local analyses for load instructions.
11//
12//===----------------------------------------------------------------------===//
13
14#ifndef LLVM_ANALYSIS_LOADS_H
15#define LLVM_ANALYSIS_LOADS_H
16
17#include "llvm/BasicBlock.h"
17#include "llvm/IR/BasicBlock.h"
18
19namespace llvm {
20
21class AliasAnalysis;
22class DataLayout;
23class MDNode;
24
25/// isSafeToLoadUnconditionally - Return true if we know that executing a load

--- 32 unchanged lines hidden ---
18
19namespace llvm {
20
21class AliasAnalysis;
22class DataLayout;
23class MDNode;
24
25/// isSafeToLoadUnconditionally - Return true if we know that executing a load

--- 32 unchanged lines hidden ---