mirror of
https://github.com/llvm/llvm-project.git
synced 2025-04-25 11:56:08 +00:00

Some tests are removed because the error conditions can no longer occur with opaque pointers.
9 lines
165 B
LLVM
9 lines
165 B
LLVM
; RUN: llvm-as < %s | llvm-dis | FileCheck %s
|
|
; RUN: verify-uselistorder %s
|
|
|
|
; CHECK: define ptr @foo() {
|
|
; CHECK: ret ptr null
|
|
define ptr @foo() {
|
|
ret ptr null
|
|
}
|