CPUs love prefetching.
If you are going to linearly traverse your data in the following pattern...
abcabcacb...
...then you are better off (performance-wise) with solution #1. If you are going to access them as:
aaa...bbb..ccc...
...then go for solution #2.
However, if you are not going to do a linear traversal or if you did not actually benchmark your code and concluded that you really need to squeeze every last drop of performance out of this piece of code, do your maintainability a favor and stick with Solution #1.
--- EDIT ---
In a multi-threaded environment, the physical layout of data may lead to false sharing. Essentially, keeping too close the pieces of data that are concurrently accessed by different threads may cause cache contention and destroy the scalability.
So, if you concurrently access a from one thread and b from another, it may be worth splitting them physically apart and implementing the solution #2. If, on the other hand, you access two "sibling" as, stick with the solution #1.
--- EDIT 2 ---
For the excellent treatment of this subject, I warmly recommend Herb Sutter's talk "Things Your Programming Language Never Told You", still available at:
http://video.google.com/videoplay?docid=-4714369049736584770
http://www.nwcpp.org/Downloads/2007/Machine_Architecture_-_NWCPP.pdf