aboutsummaryrefslogtreecommitdiff
path: root/pseudocode/operators/TRANSPOSE.tosac
diff options
context:
space:
mode:
Diffstat (limited to 'pseudocode/operators/TRANSPOSE.tosac')
-rw-r--r--pseudocode/operators/TRANSPOSE.tosac2
1 files changed, 1 insertions, 1 deletions
diff --git a/pseudocode/operators/TRANSPOSE.tosac b/pseudocode/operators/TRANSPOSE.tosac
index e75db79..3981f54 100644
--- a/pseudocode/operators/TRANSPOSE.tosac
+++ b/pseudocode/operators/TRANSPOSE.tosac
@@ -26,7 +26,7 @@ for(i = 0; i < rank(shape); i++) {
}
for_each(index in shape) {
- dim_t tmp_index = index;
+ shape_t tmp_index = index;
for(i = 0; i < rank(shape); i++) {
tmp_index[perms[i]] = index[i];
}