From: Chris Lattner Date: Sun, 14 Jul 2002 23:25:14 +0000 (+0000) Subject: New testcase to track opaque type bug X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=161036fd2259836903b4cd39096cfbd93198a020;p=oota-llvm.git New testcase to track opaque type bug git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@2904 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/test/Assembler/2002-07-14-OpaqueType.llx b/test/Assembler/2002-07-14-OpaqueType.llx new file mode 100644 index 00000000000..d6d5a83276a --- /dev/null +++ b/test/Assembler/2002-07-14-OpaqueType.llx @@ -0,0 +1,12 @@ +; Test that opaque types are preserved correctly +; RUN: as < %s | dis | as | dis +; + +%Ty = type opaque + +implementation + +%Ty* %func() { + ret %Ty* null +} +