Commit 96e4e7ab authored by Robin Kruppe's avatar Robin Kruppe Committed by Andrew Waterman
Browse files

Treat vrgather immediate as unsigned (#222)

A literal reading of the current text would imply it should be signed (as that is the default and vrgather's description says nothing to the contrary), but negative immediates are useless on this instruction, as they would (after sign extension) be larger than 2^31 and thus exceed VLMAX on any implementation and just splat a constant 0 into the destination.

FWIW, binutils currently treats it as unsigned.
parent e0145902
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment