diff options
author | Evan Cheng <evan.cheng@apple.com> | 2009-10-18 19:58:47 +0000 |
---|---|---|
committer | Evan Cheng <evan.cheng@apple.com> | 2009-10-18 19:58:47 +0000 |
commit | 38bdfc69cbe370ce5f623df4449afa32cda97422 (patch) | |
tree | d38dc4ed4203ae8dcb352d90a0afa329c5c74fd3 /include/llvm/CodeGen/PseudoSourceValue.h | |
parent | d36076e4a3a57f55c044cd1cf21a39abe1edf2de (diff) | |
download | external_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.h | 2 |
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: |