blob: 721558b5c6c00085add2593ad47c91f4d4f6b1ba [file] [log] [blame]
// RUN: %target-swift-emit-sil -O -parse-as-library %s | %FileCheck %s
// Test the absence of a 'strict' flag.
// CHECK-LABEL: $S18unsafe_pointer_gen13test_raw_load2rpSiSV_tF
// CHECK: pointer_to_address {{%.*}} : $Builtin.RawPointer to $*Int
public func test_raw_load(rp: UnsafeRawPointer) -> Int {
return rp.load(as: Int.self)
}