diff options
Diffstat (limited to 'include/ir_clang.hh')
-rwxr-xr-x | include/ir_clang.hh | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/include/ir_clang.hh b/include/ir_clang.hh index 50fb5dd..b283359 100755 --- a/include/ir_clang.hh +++ b/include/ir_clang.hh @@ -80,7 +80,9 @@ struct IR_chillArraySymbol: public IR_ArraySymbol { bool operator==(const IR_Symbol &that) const; IR_Symbol *clone() const; // TODO Hack to pass build - IR_CONSTANT_TYPE elem_type() const {return IR_CONSTANT_UNKNOWN;}; + IR_CONSTANT_TYPE elem_type() const { + fprintf(stderr,"Not implemented elem_type in IR_chillArraySymbol"); + return IR_CONSTANT_UNKNOWN;}; }; |