search for: 1037944

Displaying 1 result from an estimated 1 matches for "1037944".

Did you mean: 1037945
2014 May 16
4
[LLVMdev] Writing an address space re-numbering pass?
Hi, I'm trying to figure how to write a Module pass that globally renumbers address space numbers e.g. >From -> To 0 -> 1 1 -> 3 2 -> 2 3 -> 4 4 -> 999 I see that the address space number is a property that belongs to Types[1] and that types are immutable, so I'm not sure how to correctly implement this. But if it is I'd greatly appreciate advise on how to do