summaryrefslogtreecommitdiffstats
path: root/include/llvm/CodeGen/PseudoSourceValue.h
diff options
context:
space:
mode:
authorEvan Cheng <evan.cheng@apple.com>2009-10-18 19:58:47 +0000
committerEvan Cheng <evan.cheng@apple.com>2009-10-18 19:58:47 +0000
commit38bdfc69cbe370ce5f623df4449afa32cda97422 (patch)
treed38dc4ed4203ae8dcb352d90a0afa329c5c74fd3 /include/llvm/CodeGen/PseudoSourceValue.h
parentd36076e4a3a57f55c044cd1cf21a39abe1edf2de (diff)
downloadexternal_llvm-38bdfc69cbe370ce5f623df4449afa32cda97422.zip
external_llvm-38bdfc69cbe370ce5f623df4449afa32cda97422.tar.gz
external_llvm-38bdfc69cbe370ce5f623df4449afa32cda97422.tar.bz2
Spill slots cannot alias.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@84432 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/CodeGen/PseudoSourceValue.h')
-rw-r--r--include/llvm/CodeGen/PseudoSourceValue.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/llvm/CodeGen/PseudoSourceValue.h b/include/llvm/CodeGen/PseudoSourceValue.h
index aaf1f5f..7a9122d 100644
--- a/include/llvm/CodeGen/PseudoSourceValue.h
+++ b/include/llvm/CodeGen/PseudoSourceValue.h
@@ -41,7 +41,7 @@ namespace llvm {
/// isAliased - Test whether the memory pointed to by this
/// PseudoSourceValue may also be pointed to by an LLVM IR Value.
- virtual bool isAliased() const;
+ virtual bool isAliased(const MachineFrameInfo *) const;
/// classof - Methods for support type inquiry through isa, cast, and
/// dyn_cast: