From: Mike Stump Date: Tue, 26 May 2009 23:10:55 +0000 (+0000) Subject: And an additional testcase that also works. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=ad97cd4f451857482e76882389191fb47286ffa5;p=clang And an additional testcase that also works. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@72441 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/test/CodeGen/volatile.c b/test/CodeGen/volatile.c index c89a72bfef..cf729a33bc 100644 --- a/test/CodeGen/volatile.c +++ b/test/CodeGen/volatile.c @@ -1,6 +1,6 @@ // RUN: clang-cc -emit-llvm < %s -o %t && // RUN: grep volatile %t | count 25 && -// RUN: grep memcpy %t | count 5 +// RUN: grep memcpy %t | count 7 // The number 26 comes from the current codegen for volatile loads; // if this number changes, it's not necessarily something wrong, but @@ -90,4 +90,5 @@ void main() { (void)vF2; vF2 = vF2; vF2 = vF2 = vF2; + vF2 = (vF2, vF2); }