From 809500fc2c13c8173a16b052304d983864e4a1e1 Mon Sep 17 00:00:00 2001 From: Dimitry Andric Date: Mon, 8 Apr 2013 18:45:10 +0000 Subject: Vendor import of clang trunk r178860: http://llvm.org/svn/llvm-project/cfe/trunk@178860 --- test/CodeGen/2008-07-30-implicit-initialization.c | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'test/CodeGen/2008-07-30-implicit-initialization.c') diff --git a/test/CodeGen/2008-07-30-implicit-initialization.c b/test/CodeGen/2008-07-30-implicit-initialization.c index 8c719bb63cc39..e5162596d712b 100644 --- a/test/CodeGen/2008-07-30-implicit-initialization.c +++ b/test/CodeGen/2008-07-30-implicit-initialization.c @@ -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 // struct s0 { @@ -12,14 +16,10 @@ int f0() { 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 }; -- cgit v1.2.3