From 64ce964673ca5c71f46933d8699aa557fbc5f15a Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Mon, 13 Mar 2006 05:23:59 +0000 Subject: [PATCH] Fix a couple of bugs that broke the alpha tester build git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@26722 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/Target/PowerPC/PPCHazardRecognizers.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/Target/PowerPC/PPCHazardRecognizers.cpp b/lib/Target/PowerPC/PPCHazardRecognizers.cpp index 26548e7bfae..d7f9c10ef23 100644 --- a/lib/Target/PowerPC/PPCHazardRecognizers.cpp +++ b/lib/Target/PowerPC/PPCHazardRecognizers.cpp @@ -106,7 +106,7 @@ isLoadOfStoredAddress(unsigned LoadSize, SDOperand Ptr1, SDOperand Ptr2) const { int StoreOffs = StoreOffset->getValue(); int LoadOffs = LoadOffset->getValue(); if (StoreOffs < LoadOffs) { - if (int(StoreOffs+StoreSize) > LoadOffs) return true; + if (int(StoreOffs+StoreSize[i]) > LoadOffs) return true; } else { if (int(LoadOffs+LoadSize) > StoreOffs) return true; } @@ -164,7 +164,7 @@ getHazardType(SDNode *Node) { // If this is a load following a store, make sure it's not to the same or // overlapping address. - if (isLoad && StoreSize) { + if (isLoad && NumStores) { unsigned LoadSize; switch (Opcode) { default: assert(0 && "Unknown load!");