Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion arm/Constantexpand.ml
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ let expand_instruction = function
end
| Ploadsymbol(r1, id, ofs) ->
let o = camlint_of_coqint ofs in
if o >= -32768l && o <= 32767l && !Clflags.option_mthumb then begin
if o >= -32768l && o <= 32767l && Archi.thumb2_support then begin
emit (Ploadsymbol_imm (r1,id,ofs));
2
end else begin
Expand Down