arm64@manet Ch15_07 % g++ -I.. -std=c++11 -O -S neon.cpp arm64@manet Ch15_07 % g++ -I.. -std=c++11 -O main.cpp neon.cpp -o a.out arm64@manet Ch15_07 % ./a.out Results for Mat4x4TestF32 Matrix m_src1 10.0 11.0 12.0 13.0 20.0 21.0 22.0 23.0 30.0 31.0 32.0 33.0 40.0 41.0 42.0 43.0 Matrix m_des1 (transpose of m_src1) 10.0 20.0 30.0 40.0 11.0 21.0 31.0 41.0 12.0 22.0 32.0 42.0 13.0 23.0 33.0 43.0 Matrix m_des2 (transpose of m_src1) 10.0 20.0 30.0 40.0 11.0 21.0 31.0 41.0 12.0 22.0 32.0 42.0 13.0 23.0 33.0 43.0 arm64@manet Ch15_07 %