[llvm-commits] [test-suite] r103209 - in /test-suite/trunk/SingleSource/UnitTests/Vector/SSE: sse.expandfft.c sse.stepfft.c
Chris Lattner
sabre at nondot.org
Thu May 6 16:29:12 PDT 2010
Author: lattner
Date: Thu May 6 18:29:12 2010
New Revision: 103209
URL: http://llvm.org/viewvc/llvm-project?rev=103209&view=rev
Log:
fix a variable shadowing issue in the previous patch I applied.
Modified:
test-suite/trunk/SingleSource/UnitTests/Vector/SSE/sse.expandfft.c
test-suite/trunk/SingleSource/UnitTests/Vector/SSE/sse.stepfft.c
Modified: test-suite/trunk/SingleSource/UnitTests/Vector/SSE/sse.expandfft.c
URL: http://llvm.org/viewvc/llvm-project/test-suite/trunk/SingleSource/UnitTests/Vector/SSE/sse.expandfft.c?rev=103209&r1=103208&r2=103209&view=diff
==============================================================================
--- test-suite/trunk/SingleSource/UnitTests/Vector/SSE/sse.expandfft.c (original)
+++ test-suite/trunk/SingleSource/UnitTests/Vector/SSE/sse.expandfft.c Thu May 6 18:29:12 2010
@@ -23,7 +23,6 @@
int first,i,icase,it,n;
double error;
float fnm1,seed,sign,z0,z1,ggl();
- float *x,*y,*z,*w;
float t1,ln2,mflops;
void cffti(),cfft2();
Modified: test-suite/trunk/SingleSource/UnitTests/Vector/SSE/sse.stepfft.c
URL: http://llvm.org/viewvc/llvm-project/test-suite/trunk/SingleSource/UnitTests/Vector/SSE/sse.stepfft.c?rev=103209&r1=103208&r2=103209&view=diff
==============================================================================
--- test-suite/trunk/SingleSource/UnitTests/Vector/SSE/sse.stepfft.c (original)
+++ test-suite/trunk/SingleSource/UnitTests/Vector/SSE/sse.stepfft.c Thu May 6 18:29:12 2010
@@ -20,7 +20,6 @@
*/
int first,i,icase,it,n;
float seed,error,fnm1,sign,z0,z1,ggl();
- float *x,*y,*z,*w;
float t1,ln2,mflops;
void cffti(),cfft2();
More information about the llvm-commits
mailing list