File tree 1 file changed +9
-2
lines changed
1 file changed +9
-2
lines changed Original file line number Diff line number Diff line change @@ -218,10 +218,14 @@ Expected syntax: PRAGMA NON_VOLATILE identifier")
218
218
219
219
(type
220
220
(:WORD )
221
+ (:WORD :LEFT-BRACKET :RIGHT-BRACKET
222
+ (lambda (word rb lb)
223
+ (declare (ignore rb lb))
224
+ (list (string-to-quil-type word) ' *)))
221
225
(:WORD :LEFT-BRACKET :INT :RIGHT-BRACKET
222
226
(lambda (word rb size lb)
223
227
(declare (ignore rb lb))
224
- (format nil " ~a [ ~a ] " word size)))))
228
+ (list (string-to-quil-type word) size)))))
225
229
226
230
(define-pragma " EXTERN" pragma-extern-signature
227
231
(:documentation " PRAGMA declaring the function signature of an extern.
@@ -240,10 +244,13 @@ Expected syntax: PRAGMA EXTERN extern-name \"TYPE? \( (var : mut? TYPE)+ \)")
240
244
(setf param-types (getf parsed :param-types )))
241
245
(yacc :yacc-parse-error (err)
242
246
(warn " Syntax error while parsing PRAGMA EXTERN: ~s~% Error: ~a "
247
+ function-signature-string
248
+ (princ-to-string err)))
249
+ (error (err)
250
+ (warn " Error while parsing PRAGMA EXTERN: ~s~% Error: ~a "
243
251
function-signature-string
244
252
(princ-to-string err))))))
245
253
246
-
247
254
(defun parsed-program-has-pragma-p (parsed-program &optional (pragma-type ' pragma))
248
255
" Return T if PARSED-PROGRAM's executable code contains any pragma. Optionally use PRAGMA-TYPE to restrict to a particular pragma type."
249
256
(some (a :rcurry #' typep pragma-type)
You can’t perform that action at this time.
0 commit comments