By changing your code? Basically no. crossprod
directly calls compiled code, you'll be hard pressed to find any performance gains, and any you find will be small.
(Barring extenuating circumstances--how dense is your matrix? If you've got a lot of 0s, then using a sparse matrix may help. I'm also assuming your matrix isn't just a constant matrix as in your example.)
You could also use Microsoft's Revolution R Open which is compiled to use a different BLAS, or compile R yourself with a more optimized BLAS. This link has good details on that. For pure linear algebra manipulations, this could have a quite large effect. This site shows order of magnitude speed-ups for matrix multiplication, cholesky decomposition, etc.