File tree 1 file changed +8
-2
lines changed
1 file changed +8
-2
lines changed Original file line number Diff line number Diff line change @@ -160,6 +160,7 @@ Definition parse_OpCode_list : list (string * OpCode)
160
160
(list_all OpCode)
161
161
++ [(".byte", db)
162
162
; (".word", dw)
163
+ ; (".short", dw)
163
164
; (".long", dd)
164
165
; (".int", dd)
165
166
; (".quad", dq)].
@@ -195,15 +196,20 @@ Definition parse_RawLine {opts : assembly_program_options} : ParserAction RawLin
195
196
then [(LABEL (substring 0 (pred (String.length s)) s), "")]
196
197
else if (s =? "")
197
198
then [(EMPTY, "")]
198
- else if (List.find (String.eqb (String.to_lower s))
199
- [".cfi_def_cfa_offset"
199
+ else if (List.find (String.eqb (String.to_lower mnemonic))
200
+ [".addrsig"
201
+ ; ".addrsig_sym"
202
+ ; ".cfi_def_cfa"
203
+ ; ".cfi_def_cfa_offset"
204
+ ; ".cfi_def_cfa_register"
200
205
; ".cfi_endproc"
201
206
; ".cfi_offset"
202
207
; ".cfi_startproc"
203
208
; ".file"
204
209
; ".ident"
205
210
; ".intel_syntax"
206
211
; ".loc"
212
+ ; ".p2align"
207
213
; ".size"
208
214
; ".text"
209
215
; ".type"
You can’t perform that action at this time.
0 commit comments