Displaying 1 result from an estimated 1 matches for "typeconcatenatevector".
2013 Nov 11
0
[LLVMdev] Custom LegalizeTypeAction?
...dn't really be a legal type for
this architecture.
But here's the rub: there's no way during type legalization (that I
can tell) to convert v16i1 into i32. It wants to widen it into v16i32,
which doesn't work at all. So I'm thinking of adding a new
LegalizeTypeAction, say 'TypeConcatenateVector' that would do what
I've described.
However, I'd rather not have to make changes to the type legalizer,
since that will make it more of a pain to continue merging mainline
back into my fork, and it also feels like the wrong thing to do. While
what I'm doing is, as far as I can tell...