X-Git-Url: http://demsky.eecs.uci.edu/git/?a=blobdiff_plain;f=test%2FFeature%2Fcallingconventions.ll;h=d2e9de404fba7fdb348f6f59a24e4373cd9ce8e9;hb=a1aabe422f139daebf9cada3d45a611687465ac5;hp=ce4b93ad8baf3c3cf1d8eb049ae9c952ab0b0543;hpb=6dc7e6833b2a9e399c9bebe18793706aa5dcf2b2;p=oota-llvm.git diff --git a/test/Feature/callingconventions.ll b/test/Feature/callingconventions.ll index ce4b93ad8ba..d2e9de404fb 100644 --- a/test/Feature/callingconventions.ll +++ b/test/Feature/callingconventions.ll @@ -1,42 +1,50 @@ -; RUN: llvm-as %s -o - | llvm-dis > %t1.ll +; RUN: llvm-as < %s | llvm-dis > %t1.ll ; RUN: llvm-as %t1.ll -o - | llvm-dis > %t2.ll ; RUN: diff %t1.ll %t2.ll -fastcc void %foo() { - ret void +define fastcc void @foo() { + ret void } -coldcc void %bar() { - call fastcc void %foo() - ret void +define coldcc void @bar() { + call fastcc void @foo( ) + ret void } - -cc0 void %foo2() { - ret void +define void @structret({ i8 }* sret %P) { + call void @structret( { i8 }* sret %P ) + ret void } -coldcc void %bar2() { - call fastcc void %foo() - ret void +define void @foo2() { + ret void } -cc42 void %bar3() { - invoke fastcc void %foo() to label %Ok unwind label %U -Ok: - ret void -U: - unwind +define coldcc void @bar2() { + call fastcc void @foo( ) + ret void } +define cc42 void @bar3() { + invoke fastcc void @foo( ) + to label %Ok unwind label %U + +Ok: ; preds = %0 + ret void -void %bar4() { - call cc42 void %bar() - invoke cc42 void %bar3() to label %Ok unwind label %U -Ok: - ret void -U: - unwind +U: ; preds = %0 + unwind } +define void @bar4() { + call cc42 void @bar( ) + invoke cc42 void @bar3( ) + to label %Ok unwind label %U + +Ok: ; preds = %0 + ret void + +U: ; preds = %0 + unwind +}