search for: b0af40b

Displaying 2 results from an estimated 2 matches for "b0af40b".

Did you mean: b0af40be
2013 Aug 16
0
[LLVMdev] Definition of the bitcast instruction for vectors
...;no-op" cast in the sense that there isn't any math involved; it's not a statement about the number of necessary machine instructions. -Eli -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20130816/b0af40be/attachment.html>
2013 Aug 16
2
[LLVMdev] Definition of the bitcast instruction for vectors
Hi, >From http://llvm.org/docs/LangRef.html#bitcast-to-instruction: The 'bitcast' instruction converts value to type ty2. It is always a no-op cast because no bits change with this conversion. The conversion is done as if the value had been stored to memory and read back as type ty2. Pointer (or vector of pointers) types may only be converted to other pointer (or vector of pointers)