Displaying 1 result from an estimated 1 matches for "9a8ac46e".
2015 May 03
2
[LLVMdev] Semantics of an Inbounds GetElementPtr
Hi - I've got a question about what optimizations the "inbounds"
keyword of "getelementptr" allows you to use. In the code below, %five
is loaded from and inbounds offset of either a null pointer or %mem:
target datalayout = "e-i64:64-f80:128-n8:16:32:64-S128"
define i8 @func(i8* %mem) {
%test = icmp eq i8* %mem, null
br i1 %test, label %done, label