[cfe-commits] r56842 - /cfe/trunk/test/CodeGen/function-attributes.c

Nuno Lopes nunoplopes at sapo.pt
Tue Sep 30 07:37:33 PDT 2008


Author: nlopes
Date: Tue Sep 30 09:37:33 2008
New Revision: 56842

URL: http://llvm.org/viewvc/llvm-project?rev=56842&view=rev
Log:
fix test for latest changes in llvm asm representation

Modified:
    cfe/trunk/test/CodeGen/function-attributes.c

Modified: cfe/trunk/test/CodeGen/function-attributes.c
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/test/CodeGen/function-attributes.c?rev=56842&r1=56841&r2=56842&view=diff

==============================================================================
--- cfe/trunk/test/CodeGen/function-attributes.c (original)
+++ cfe/trunk/test/CodeGen/function-attributes.c Tue Sep 30 09:37:33 2008
@@ -1,10 +1,10 @@
 // RUN: clang -emit-llvm -o %t %s &&
-// RUN: grep 'define i8 @f0(i32 %x) signext nounwind' %t &&
-// RUN: grep 'define i8 @f1(i32 %x) zeroext nounwind' %t &&
+// RUN: grep 'define signext i8 @f0(i32 %x) nounwind' %t &&
+// RUN: grep 'define zeroext i8 @f1(i32 %x) nounwind' %t &&
 // RUN: grep 'define void @f2(i8 signext %x) nounwind' %t &&
 // RUN: grep 'define void @f3(i8 zeroext %x) nounwind' %t &&
-// RUN: grep 'define i16 @f4(i32 %x) signext nounwind' %t &&
-// RUN: grep 'define i16 @f5(i32 %x) zeroext nounwind' %t &&
+// RUN: grep 'define signext i16 @f4(i32 %x) nounwind' %t &&
+// RUN: grep 'define zeroext i16 @f5(i32 %x) nounwind' %t &&
 // RUN: grep 'define void @f6(i16 signext %x) nounwind' %t &&
 // RUN: grep 'define void @f7(i16 zeroext %x) nounwind' %t
 





More information about the cfe-commits mailing list