about summary refs log tree commit diff stats
path: root/mu.arc
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2014-10-05 15:02:55 -0700
committerKartik K. Agaram <vc@akkartik.com>2014-10-05 15:02:55 -0700
commit5fca71f1ee984f55f99ecf0ddf2e45dd492822ac (patch)
tree1bcf52c552846d4e0e10d680e1095c58b0d8eb97 /mu.arc
parentbf6a25faa94931b2c3ee6168403a5469773508cf (diff)
downloadmu-5fca71f1ee984f55f99ecf0ddf2e45dd492822ac.tar.gz
108
Diffstat (limited to 'mu.arc')
-rw-r--r--mu.arc14
1 files changed, 0 insertions, 14 deletions
diff --git a/mu.arc b/mu.arc
index e80c1795..ab1bc05a 100644
--- a/mu.arc
+++ b/mu.arc
@@ -93,20 +93,6 @@
 (def typeinfo (operand)
   (types* ty.operand))
 
-;? (def is-array (operand)
-;?   (if (pos 'deref metadata.operand)
-;?     (if typeinfo.operand!address
-;?       ((types* typeinfo.operand!elem) 'array)
-;?       (err "can't deref non-address @operand"))
-;?     typeinfo.operand!array))
-;? 
-;? (def is-record (operand)
-;?   (if (pos 'deref metadata.operand)
-;?     (if typeinfo.operand!address
-;?       ((types* typeinfo.operand!elem) 'record)
-;?       (err "can't deref non-address @operand"))
-;?     typeinfo.operand!record))
-
 (def sz (operand)
 ;?   (prn "sz " operand)
   ; todo: override this for arrays
25' href='#n125'>125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190