julia> @code_llvm unsafe_load( Ptr{UInt32}(1000) )
define i32 @julia_unsafe_load_21205(i32*) {
top:
%1 = load i32* %0, align 1
ret i32 %1
}
Does this mean `Ptr{UInt32}(1000)` does not alloc any memory?
What effect does the 1000 have?
