
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
|
|
}
|