Author: lnicoara
Date: Mon Sep 24 12:38:17 2012
New Revision: 1389337

URL: http://svn.apache.org/viewvc?rev=1389337&view=rev
Log:
2012-09-24  Liviu Nicoara  <nikko...@hates.ms>

    * tests/support/atomic_xchg.cpp: (run_test) moved counter volatile
      qualification to match STDCXX conventions (see r1388733)  



Modified:
    stdcxx/branches/4.2.x/tests/support/atomic_xchg.cpp

Modified: stdcxx/branches/4.2.x/tests/support/atomic_xchg.cpp
URL: 
http://svn.apache.org/viewvc/stdcxx/branches/4.2.x/tests/support/atomic_xchg.cpp?rev=1389337&r1=1389336&r2=1389337&view=diff
==============================================================================
--- stdcxx/branches/4.2.x/tests/support/atomic_xchg.cpp (original)
+++ stdcxx/branches/4.2.x/tests/support/atomic_xchg.cpp Mon Sep 24 12:38:17 2012
@@ -297,7 +297,7 @@ void run_test (intT, thr_args_base::tag_
     // compute the expected result, "skipping" zeros by incrementing
     // expect twice when it overflows and wraps around to 0 (zero is
     // used as the lock variable in thread_routine() above)
-    intT volatile expect = intT (1);
+    volatile intT expect = intT (1);
 
     const unsigned long nincr = (Args::nthreads_ * Args::nincr_) / 2U;
         


Reply via email to