[cfe-commits] r173115 - in /cfe/trunk/test/CodeGen: 2008-07-30-implicit-initialization.c 2008-07-31-promotion-of-compound-pointer-arithmetic.c

NAKAMURA Takumi geek4civic at gmail.com
Mon Jan 21 17:52:00 PST 2013


Author: chapuni
Date: Mon Jan 21 19:51:59 2013
New Revision: 173115

URL: http://llvm.org/viewvc/llvm-project?rev=173115&view=rev
Log:
clang/test/CodeGen: Nuke llvm's opt and llvm-dis, and FileCheck-ize two tests. -O1 is sufficient here.

Modified:
    cfe/trunk/test/CodeGen/2008-07-30-implicit-initialization.c
    cfe/trunk/test/CodeGen/2008-07-31-promotion-of-compound-pointer-arithmetic.c

Modified: cfe/trunk/test/CodeGen/2008-07-30-implicit-initialization.c
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/test/CodeGen/2008-07-30-implicit-initialization.c?rev=173115&r1=173114&r2=173115&view=diff
==============================================================================
--- cfe/trunk/test/CodeGen/2008-07-30-implicit-initialization.c (original)
+++ cfe/trunk/test/CodeGen/2008-07-30-implicit-initialization.c Mon Jan 21 19:51:59 2013
@@ -1,6 +1,10 @@
-// RUN: %clang_cc1 -triple i386-unknown-unknown -emit-llvm-bc -o - %s | opt --std-compile-opts | llvm-dis > %t
-// RUN: grep "ret i32" %t | count 2
-// RUN: grep "ret i32 0" %t | count 2
+// RUN: %clang_cc1 -triple i386-unknown-unknown -O1 -emit-llvm -o - %s | FileCheck %s
+// CHECK: define i32 @f0()
+// CHECK:   ret i32 0
+// CHECK: define i32 @f1()
+// CHECK:   ret i32 0
+// CHECK: define i32 @f2()
+// CHECK:   ret i32 0
 // <rdar://problem/6113085>
 
 struct s0 {
@@ -12,14 +16,10 @@
   return x.y;
 }
 
-#if 0
-/* Optimizer isn't smart enough to reduce this since we use
-   memset. Hrm. */
 int f1() {
   struct s0 x[2] = { {0} };
   return x[1].x;
 }
-#endif
 
 int f2() {
   int x[2] = { 0 };

Modified: cfe/trunk/test/CodeGen/2008-07-31-promotion-of-compound-pointer-arithmetic.c
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/test/CodeGen/2008-07-31-promotion-of-compound-pointer-arithmetic.c?rev=173115&r1=173114&r2=173115&view=diff
==============================================================================
--- cfe/trunk/test/CodeGen/2008-07-31-promotion-of-compound-pointer-arithmetic.c (original)
+++ cfe/trunk/test/CodeGen/2008-07-31-promotion-of-compound-pointer-arithmetic.c Mon Jan 21 19:51:59 2013
@@ -1,4 +1,10 @@
-// RUN: %clang_cc1 -triple i386-unknown-unknown -emit-llvm-bc -o - %s | opt -std-compile-opts | llvm-dis | grep "ret i32 1" | count 3
+// RUN: %clang_cc1 -triple i386-unknown-unknown -O1 -emit-llvm -o - %s | FileCheck %s
+// CHECK: define i32 @f0
+// CHECK:   ret i32 1
+// CHECK: define i32 @f1
+// CHECK:   ret i32 1
+// CHECK: define i32 @f2
+// CHECK:   ret i32 1
 // <rdr://6115726>
 
 int f0() {





More information about the cfe-commits mailing list