[llvm-commits] [llvm] r60451 - /llvm/trunk/test/CodeGen/X86/tailcallbyval.ll

Dan Gohman gohman at apple.com
Tue Dec 2 17:10:18 PST 2008


Author: djg
Date: Tue Dec  2 19:10:18 2008
New Revision: 60451

URL: http://llvm.org/viewvc/llvm-project?rev=60451&view=rev
Log:
Add nounwind attributes to this test.

Modified:
    llvm/trunk/test/CodeGen/X86/tailcallbyval.ll

Modified: llvm/trunk/test/CodeGen/X86/tailcallbyval.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/CodeGen/X86/tailcallbyval.ll?rev=60451&r1=60450&r2=60451&view=diff

==============================================================================
--- llvm/trunk/test/CodeGen/X86/tailcallbyval.ll (original)
+++ llvm/trunk/test/CodeGen/X86/tailcallbyval.ll Tue Dec  2 19:10:18 2008
@@ -5,14 +5,14 @@
                   i32, i32, i32, i32, i32, i32, i32, i32,
                   i32, i32, i32, i32, i32, i32, i32, i32 }
 
-define  fastcc i32 @tailcallee(%struct.s* byval %a) {
+define  fastcc i32 @tailcallee(%struct.s* byval %a) nounwind {
 entry:
         %tmp2 = getelementptr %struct.s* %a, i32 0, i32 0
         %tmp3 = load i32* %tmp2
         ret i32 %tmp3
 }
 
-define  fastcc i32 @tailcaller(%struct.s* byval %a) {
+define  fastcc i32 @tailcaller(%struct.s* byval %a) nounwind {
 entry:
         %tmp4 = tail call fastcc i32 @tailcallee(%struct.s* %a byval)
         ret i32 %tmp4





More information about the llvm-commits mailing list