Fix a bug in GVN that Duncan noticed, where we potentially need to insert a
[oota-llvm.git] / test / Assembler / 2002-07-14-InternalLossage.llx
index 31469649c2cf93e70ed0a402e251c9a147fc6abc..f93f1c4a5fb084081f53b2d2d80c80775e0408c1 100644 (file)
@@ -2,10 +2,8 @@
 ;
 ; RUN: llvm-as < %s | llvm-dis | grep internal
 
-declare void %foo()
-implementation
+declare void @foo()
 
-internal void %foo() {
-       ret void
+define internal void @foo() {
+        ret void
 }
-