DebugInfo: Add missing !dbg attachments to intrinsics
[oota-llvm.git] / test / Transforms / Inline / 2003-09-14-InlineValue.ll
index f81b4022967ec5ec1a9721e38d705fd2eeab4f16..98bc08b378e0af680997e95971d513925d6899f1 100644 (file)
@@ -1,20 +1,25 @@
-; RUN: llvm-as < %s | opt -inline -disable-output
+; RUN: opt < %s -inline -disable-output
 
-declare int %External()
+declare i32 @External()
 
-implementation
-
-internal int %Callee() {
-  %I = call int %External()
-  %J = add int %I, %I
-  ret int %J
+define internal i32 @Callee() {
+        %I = call i32 @External( )              ; <i32> [#uses=2]
+        %J = add i32 %I, %I             ; <i32> [#uses=1]
+        ret i32 %J
 }
 
-int %Caller() {
-       %V = invoke int %Callee() to label %Ok except label %Bad
-Ok:
-  ret int %V
-Bad:
-  ret int 0
+define i32 @Caller() {
+        %V = invoke i32 @Callee( )
+                        to label %Ok unwind label %Bad          ; <i32> [#uses=1]
+
+Ok:             ; preds = %0
+        ret i32 %V
+
+Bad:            ; preds = %0
+        %exn = landingpad {i8*, i32} personality i32 (...)* @__gxx_personality_v0
+                 cleanup
+        ret i32 0
 }
 
+declare i32 @__gxx_personality_v0(...)
+