Skip to content

Commit b6aa471

Browse files
author
Colin O'Keefe
committed
Updates
1 parent f7b8267 commit b6aa471

File tree

1 file changed

+9
-2
lines changed

1 file changed

+9
-2
lines changed

src/pragmas.lisp

+9-2
Original file line numberDiff line numberDiff line change
@@ -218,10 +218,14 @@ Expected syntax: PRAGMA NON_VOLATILE identifier")
218218

219219
(type
220220
(:WORD)
221+
(:WORD :LEFT-BRACKET :RIGHT-BRACKET
222+
(lambda (word rb lb)
223+
(declare (ignore rb lb))
224+
(list (string-to-quil-type word) '*)))
221225
(:WORD :LEFT-BRACKET :INT :RIGHT-BRACKET
222226
(lambda (word rb size lb)
223227
(declare (ignore rb lb))
224-
(format nil "~a[~a]" word size)))))
228+
(list (string-to-quil-type word) size)))))
225229

226230
(define-pragma "EXTERN" pragma-extern-signature
227231
(:documentation "PRAGMA declaring the function signature of an extern.
@@ -240,10 +244,13 @@ Expected syntax: PRAGMA EXTERN extern-name \"TYPE? \( (var : mut? TYPE)+ \)")
240244
(setf param-types (getf parsed :param-types)))
241245
(yacc:yacc-parse-error (err)
242246
(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"
243251
function-signature-string
244252
(princ-to-string err))))))
245253

246-
247254
(defun parsed-program-has-pragma-p (parsed-program &optional (pragma-type 'pragma))
248255
"Return T if PARSED-PROGRAM's executable code contains any pragma. Optionally use PRAGMA-TYPE to restrict to a particular pragma type."
249256
(some (a:rcurry #'typep pragma-type)

0 commit comments

Comments
 (0)