diff options
author | Dan Gohman <gohman@apple.com> | 2008-07-27 21:46:04 +0000 |
---|---|---|
committer | Dan Gohman <gohman@apple.com> | 2008-07-27 21:46:04 +0000 |
commit | 2ce6f2ad5e1c65e6e55feec20a14bfbea389e4de (patch) | |
tree | 1ea0dfbe1eb60ec07ea25b0b877604567885512b /llvm/lib/Target/PowerPC/PPCHazardRecognizers.h | |
parent | 91e5dcb68054d2e481863528ba15b69b6821b50b (diff) | |
download | bcm5719-llvm-2ce6f2ad5e1c65e6e55feec20a14bfbea389e4de.tar.gz bcm5719-llvm-2ce6f2ad5e1c65e6e55feec20a14bfbea389e4de.zip |
Rename SDOperand to SDValue.
llvm-svn: 54128
Diffstat (limited to 'llvm/lib/Target/PowerPC/PPCHazardRecognizers.h')
-rw-r--r-- | llvm/lib/Target/PowerPC/PPCHazardRecognizers.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/lib/Target/PowerPC/PPCHazardRecognizers.h b/llvm/lib/Target/PowerPC/PPCHazardRecognizers.h index 8ec25aed61b..7ba2e6e7130 100644 --- a/llvm/lib/Target/PowerPC/PPCHazardRecognizers.h +++ b/llvm/lib/Target/PowerPC/PPCHazardRecognizers.h @@ -41,7 +41,7 @@ class PPCHazardRecognizer970 : public HazardRecognizer { // // This is null if we haven't seen a store yet. We keep track of both // operands of the store here, since we support [r+r] and [r+i] addressing. - SDOperand StorePtr1[4], StorePtr2[4]; + SDValue StorePtr1[4], StorePtr2[4]; unsigned StoreSize[4]; unsigned NumStores; @@ -64,7 +64,7 @@ private: bool &isLoad, bool &isStore); bool isLoadOfStoredAddress(unsigned LoadSize, - SDOperand Ptr1, SDOperand Ptr2) const; + SDValue Ptr1, SDValue Ptr2) const; }; } // end namespace llvm |