Show
Ignore:
Timestamp:
06/05/12 17:20:26 (13 months ago)
Author:
ksherdy
Message:

Updated carry array. Added assert_0_error macro to symbol table template.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • proto/parabix2/pablo_template_symbol_table.cpp

    r2202 r2211  
    66 
    77#define LocalCarryDeclare(name, count)\ 
    8 CarryArray<count> name;\ 
     8CarryArray<count, 0> name;\ 
    99 
    1010#include "../lib/bitblock.hpp" 
     
    2222#include <ErrorTracker.h> 
    2323#include <XMLTestSuiteError.h> 
     24 
     25// Define the mappings for pablo.assert_0(strm, errkind) statements which 
     26// compile to the the form assert_0_error(errkind, strm) 
     27#define assert_0_error(errkind, errstrm) error_tracker.NoteError(errkind, errstrm); 
    2428 
    2529#define SYMBOL_TABLE