PerfectCacheMemory: Add return statements to two functions.
authorNilay Vaish <nilay@cs.wisc.edu>
Thu, 23 Dec 2010 19:36:18 +0000 (13:36 -0600)
committerNilay Vaish <nilay@cs.wisc.edu>
Thu, 23 Dec 2010 19:36:18 +0000 (13:36 -0600)
commit04f5bb34ce0475a3fee8e3c104413f79668e0ab6
treee205bf5ed07febaf5a4ea1fd8f32251201207d99
parent58fa2857e123a44b1633628b898847773153c047
PerfectCacheMemory: Add return statements to two functions.
Two functions in src/mem/ruby/system/PerfectCacheMemory.hh, tryCacheAccess()
and cacheProbe(), end with calls to panic(). Both of these functions have
return type other than void. Any file that includes this header file fails
to compile because of the missing return statement. This patch adds dummy
values so as to avoid the compiler warnings.
src/mem/ruby/system/PerfectCacheMemory.hh