Deleted Added
sdiff udiff text old ( 13233:ded73a80b0b4 ) new ( 13449:2f7efa89c58b )
full compact
1// -*- mode:c++ -*-
2
3// Copyright (c) 2007 MIPS Technologies, Inc.
4// All rights reserved.
5//
6// Redistribution and use in source and binary forms, with or without
7// modification, are permitted provided that the following conditions are
8// met: redistributions of source code must retain the above copyright

--- 107 unchanged lines hidden (view full) ---

116
117 case 4:
118 return packet->getLE<uint32_t>();
119
120 case 8:
121 return packet->getLE<uint64_t>();
122
123 default:
124 panic("bad store data size = %d", packet->getSize());
125 return 0;
126 }
127 }
128
129
130}};
131
132def template LoadStoreDeclare {{

--- 421 unchanged lines hidden ---