Conversion performed using the script at: https://gist.github.com/nikic/98357b71fd67756b0f064c9517b62a34
12 lines
237 B
LLVM
12 lines
237 B
LLVM
; RUN: opt -S -function-attrs %s | FileCheck %s
|
|
; RUN: opt -S -passes=function-attrs %s | FileCheck %s
|
|
|
|
@a = external global i8, !absolute_symbol !0
|
|
|
|
; CHECK-NOT: define nonnull
|
|
define ptr @foo() {
|
|
ret ptr @a
|
|
}
|
|
|
|
!0 = !{i64 0, i64 256}
|