aboutsummaryrefslogtreecommitdiffhomepage
path: root/bench/btl/actions/action_matrix_vector_product.hh
diff options
context:
space:
mode:
authorGravatar Gael Guennebaud <g.gael@free.fr>2008-12-19 15:31:47 +0000
committerGravatar Gael Guennebaud <g.gael@free.fr>2008-12-19 15:31:47 +0000
commit8679d895d332162694477f06d6f369ee5652e458 (patch)
treeab01c3f5c2e9b3f85e634076f0579605b41c2f6b /bench/btl/actions/action_matrix_vector_product.hh
parent22875683b9c382a8f327630014ae33d22ca64588 (diff)
various MSVC fixes in BTL
Diffstat (limited to 'bench/btl/actions/action_matrix_vector_product.hh')
-rw-r--r--bench/btl/actions/action_matrix_vector_product.hh4
1 files changed, 2 insertions, 2 deletions
diff --git a/bench/btl/actions/action_matrix_vector_product.hh b/bench/btl/actions/action_matrix_vector_product.hh
index 272e9d417..8bab79d18 100644
--- a/bench/btl/actions/action_matrix_vector_product.hh
+++ b/bench/btl/actions/action_matrix_vector_product.hh
@@ -103,9 +103,9 @@ public :
}
BTL_DONT_INLINE void calculate( void ) {
- asm("#begin matrix_vector_product");
+ BTL_ASM_COMMENT("#begin matrix_vector_product");
Interface::matrix_vector_product(A,B,X,_size);
- asm("#end matrix_vector_product");
+ BTL_ASM_COMMENT("end matrix_vector_product");
}
BTL_DONT_INLINE void check_result( void ){