[llvm-commits] [llvm] r127730 - /llvm/trunk/test/CodeGen/X86/dyn-stackalloc.ll

NAKAMURA Takumi geek4civic at gmail.com
Wed Mar 16 06:52:08 PDT 2011


Author: chapuni
Date: Wed Mar 16 08:52:08 2011
New Revision: 127730

URL: http://llvm.org/viewvc/llvm-project?rev=127730&view=rev
Log:
test/CodeGen/X86/dyn-stackalloc.ll: FileCheck-ize.

Modified:
    llvm/trunk/test/CodeGen/X86/dyn-stackalloc.ll

Modified: llvm/trunk/test/CodeGen/X86/dyn-stackalloc.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/CodeGen/X86/dyn-stackalloc.ll?rev=127730&r1=127729&r2=127730&view=diff
==============================================================================
--- llvm/trunk/test/CodeGen/X86/dyn-stackalloc.ll (original)
+++ llvm/trunk/test/CodeGen/X86/dyn-stackalloc.ll Wed Mar 16 08:52:08 2011
@@ -1,6 +1,9 @@
-; RUN: llc < %s -mtriple=i686-linux | not egrep {\\\$4294967289|-7}
-; RUN: llc < %s -mtriple=i686-linux | egrep {\\\$4294967280|-16}
-; RUN: llc < %s -mtriple=x86_64-linux | grep {\\-16}
+; RUN: llc < %s -mtriple=i686-linux | FileCheck %s -check-prefix=X32
+; X32-NOT:     {{$429496728|-7}}
+; X32:     {{$4294967280|-16}}
+; X32-NOT:     {{$429496728|-7}}
+; RUN: llc < %s -mtriple=x86_64-linux | FileCheck %s -check-prefix=X64
+; X64:     -16
 
 define void @t() nounwind {
 A:





More information about the llvm-commits mailing list