mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-23 11:13:28 +01:00
a973e7a418
Summary: NetBSD shell sh(1) does not support ">& /dev/null" construct. This is bashism. The portable and POSIX solution is to use: "> /dev/null 2>&1". This change fixes 22 Unexpected Failures on NetBSD/amd64 for the "check-llvm" target. Sponsored by <The NetBSD Foundation> Reviewers: joerg, dim, rnk Reviewed By: joerg, rnk Subscribers: rnk, davide, llvm-commits Differential Revision: https://reviews.llvm.org/D35277 llvm-svn: 307789
15 lines
257 B
LLVM
15 lines
257 B
LLVM
; RUN: not llvm-as < %s > /dev/null 2>&1
|
|
; PR1633
|
|
|
|
%meta = type { i8* }
|
|
%obj = type { %meta* }
|
|
|
|
declare void @llvm.gcroot(%obj*, %meta*)
|
|
|
|
define void @f() {
|
|
entry:
|
|
%local.obj = alloca %obj
|
|
call void @llvm.gcroot(%obj* %local.obj, %meta* null)
|
|
ret void
|
|
}
|