[cfe-commits] r78699 - /cfe/trunk/test/CodeGen/blocks-seq.c
Daniel Dunbar
daniel at zuster.org
Tue Aug 11 11:37:40 PDT 2009
Author: ddunbar
Date: Tue Aug 11 13:37:40 2009
New Revision: 78699
URL: http://llvm.org/viewvc/llvm-project?rev=78699&view=rev
Log:
Update test case.
Modified:
cfe/trunk/test/CodeGen/blocks-seq.c
Modified: cfe/trunk/test/CodeGen/blocks-seq.c
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/test/CodeGen/blocks-seq.c?rev=78699&r1=78698&r2=78699&view=diff
==============================================================================
--- cfe/trunk/test/CodeGen/blocks-seq.c (original)
+++ cfe/trunk/test/CodeGen/blocks-seq.c Tue Aug 11 13:37:40 2009
@@ -1,11 +1,11 @@
// RUN: clang-cc -fblocks -triple x86_64-apple-darwin10 -emit-llvm -o %t %s &&
// RUN: grep '%call = call i32 (...)\* @rhs()' %t | count 1 &&
// If this fails, see about sliding %4, %5, %6 and %7...
-// RUN: grep '%forwarding1 = getelementptr %0\* %i, i32 0, i32 1' %t | count 1 &&
+// RUN: grep '%forwarding1 = getelementptr inbounds %0\* %i, i32 0, i32 1' %t | count 1 &&
// RUN: grep '%4 = bitcast i8\*\* %forwarding1 to %0\*\*' %t | count 1 &&
// RUN: grep '%5 = load %0\*\* %4' %t | count 1 &&
// RUN: grep '%call2 = call i32 (...)\* @rhs()' %t | count 1 &&
-// RUN: grep '%forwarding3 = getelementptr %0\* %i, i32 0, i32 1' %t | count 1 &&
+// RUN: grep '%forwarding3 = getelementptr inbounds %0\* %i, i32 0, i32 1' %t | count 1 &&
// RUN: grep '%6 = bitcast i8\*\* %forwarding3 to %0\*\*' %t | count 1 &&
// RUN: grep '%7 = load %0\*\* %6' %t | count 1
More information about the cfe-commits
mailing list