source: trunk/IPs/systemC/processor/Morpheo/Behavioural/src/Stat_binary_tree_is_leaf.cpp @ 146

Last change on this file since 146 was 146, checked in by rosiere, 13 years ago

1) Integration of RegisterFile_Internal_Banked in RegisterFile?
2) Erase "read_write" interface in RegisterFile_Monolithic component
3) Add smith predictor parameters in Load_store_pointer_unit.
4) Fix not statistics flags

  • Property svn:executable set to *
  • Property svn:keywords set to Id
File size: 234 bytes
RevLine 
[146]1// #ifdef STATISTICS
[71]2#include "Behavioural/include/Stat_binary_tree.h"
3
4namespace morpheo {
5namespace behavioural { 
[146]6  bool Stat_binary_tree::is_leaf  (void)
[71]7  {
8    return ((_left == NULL) and (_right == NULL));
9  }
10};
11};
[146]12// #endif
Note: See TracBrowser for help on using the repository browser.