10 lines
189 B
LLVM
10 lines
189 B
LLVM
; 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}
|