From: Dale Johannesen Date: Fri, 15 Feb 2008 22:05:15 +0000 (+0000) Subject: Modify test to expect improved code. X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=35e11cd70b3d3d9c7dac1d63cc99f2cc911a5fda;p=oota-llvm.git Modify test to expect improved code. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@47182 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/test/C++Frontend/2008-02-13-sret.cpp b/test/C++Frontend/2008-02-13-sret.cpp index 8ad20470197..236495ffb4c 100644 --- a/test/C++Frontend/2008-02-13-sret.cpp +++ b/test/C++Frontend/2008-02-13-sret.cpp @@ -1,9 +1,9 @@ // RUN: %llvmgxx -S -O0 -emit-llvm %s -o - | grep {retval\\|memtmp} | grep S242 | \ -// RUN: grep {i32 1} | count 2 +// RUN: grep {i32 1} | count 1 + +// Test that all 8 bytes of ret in check242 are copied, and only 4 bytes of +// ret in check93 are copied (the same LLVM struct is used for both). -// Test that all 8 bytes of ret in check242 are copied. llvm-gcc was -// treating S242 as if it were S93, which does not need to have the -// last 4 padding bytes copied. typedef __builtin_va_list va_list; typedef unsigned long size_t; void *memset(void *, int, size_t);