diff options
author | Duncan Sands <baldrick@free.fr> | 2008-03-28 09:45:24 +0000 |
---|---|---|
committer | Duncan Sands <baldrick@free.fr> | 2008-03-28 09:45:24 +0000 |
commit | e10efce22502d1a1855d25baf1458660f4ba6f33 (patch) | |
tree | 302352242fcda349e5d9298324de8f94361e734f /include | |
parent | ddf0a06580f1a1541cfd86f9e52941d2f61d34f1 (diff) | |
download | external_llvm-e10efce22502d1a1855d25baf1458660f4ba6f33.zip external_llvm-e10efce22502d1a1855d25baf1458660f4ba6f33.tar.gz external_llvm-e10efce22502d1a1855d25baf1458660f4ba6f33.tar.bz2 |
Rename getAnyLoad to getLoad is suggested by Evan.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@48914 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include')
-rw-r--r-- | include/llvm/CodeGen/SelectionDAG.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/include/llvm/CodeGen/SelectionDAG.h b/include/llvm/CodeGen/SelectionDAG.h index d0e03d4..a77f854 100644 --- a/include/llvm/CodeGen/SelectionDAG.h +++ b/include/llvm/CodeGen/SelectionDAG.h @@ -379,11 +379,11 @@ public: unsigned Alignment=0); SDOperand getIndexedLoad(SDOperand OrigLoad, SDOperand Base, SDOperand Offset, ISD::MemIndexedMode AM); - SDOperand getAnyLoad(ISD::MemIndexedMode AM, ISD::LoadExtType ExtType, - MVT::ValueType VT, SDOperand Chain, - SDOperand Ptr, SDOperand Offset, - const Value *SV, int SVOffset, MVT::ValueType EVT, - bool isVolatile=false, unsigned Alignment=0); + SDOperand getLoad(ISD::MemIndexedMode AM, ISD::LoadExtType ExtType, + MVT::ValueType VT, SDOperand Chain, + SDOperand Ptr, SDOperand Offset, + const Value *SV, int SVOffset, MVT::ValueType EVT, + bool isVolatile=false, unsigned Alignment=0); /// getStore - Helper function to build ISD::STORE nodes. /// |