summaryrefslogtreecommitdiff
path: root/include/llvm/Analysis/ValueTracking.h
diff options
context:
space:
mode:
authorDan Gohman <gohman@apple.com>2012-01-04 23:01:09 +0000
committerDan Gohman <gohman@apple.com>2012-01-04 23:01:09 +0000
commitfebaf8401779fedf8db7b02e499c5e39848fb9f5 (patch)
tree4e2693e9a4627c162c4f9e6874eb73094485ae3e /include/llvm/Analysis/ValueTracking.h
parenta5f8942e055abf1640fcd822406f875e1b2d8916 (diff)
downloadllvm-febaf8401779fedf8db7b02e499c5e39848fb9f5.tar.gz
llvm-febaf8401779fedf8db7b02e499c5e39848fb9f5.tar.bz2
llvm-febaf8401779fedf8db7b02e499c5e39848fb9f5.tar.xz
Generalize isSafeToSpeculativelyExecute to work on arbitrary
Values, rather than just Instructions, since it's interesting for ConstantExprs too. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@147560 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/Analysis/ValueTracking.h')
-rw-r--r--include/llvm/Analysis/ValueTracking.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/llvm/Analysis/ValueTracking.h b/include/llvm/Analysis/ValueTracking.h
index 85c659c631..300f51df37 100644
--- a/include/llvm/Analysis/ValueTracking.h
+++ b/include/llvm/Analysis/ValueTracking.h
@@ -174,7 +174,7 @@ namespace llvm {
/// the correct dominance relationships for the operands and users hold.
/// However, this method can return true for instructions that read memory;
/// for such instructions, moving them may change the resulting value.
- bool isSafeToSpeculativelyExecute(const Instruction *Inst,
+ bool isSafeToSpeculativelyExecute(const Value *V,
const TargetData *TD = 0);
} // end namespace llvm