Move a DenseMap's declaration outside of a loop, and just call
[oota-llvm.git] / test / Transforms / Inline / 2004-04-15-InlineDeletesCall.ll
index 8ac123f32cc9b85f5d22ba5786d7d9ccfc5e84b1..8a2f8e29edff17208c674c8df99926c1f87480af 100644 (file)
@@ -4,18 +4,17 @@
 ; call.  Then the inliner tries to inline the second call, which no longer
 ; exists.
 
-implementation
-
-internal void %Callee1() {
-       unwind
+define internal void @Callee1() {
+        unwind
 }
 
-void %Callee2() {
-       ret void
+define void @Callee2() {
+        ret void
 }
 
-void %caller() {
-       call void %Callee1()
-       call void %Callee2()
-       ret void
+define void @caller() {
+        call void @Callee1( )
+        call void @Callee2( )
+        ret void
 }
+