aboutsummaryrefslogtreecommitdiffhomepage
path: root/bench/btl/actions/action_axpy.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_axpy.hh
parent22875683b9c382a8f327630014ae33d22ca64588 (diff)
various MSVC fixes in BTL
Diffstat (limited to 'bench/btl/actions/action_axpy.hh')
-rw-r--r--bench/btl/actions/action_axpy.hh4
1 files changed, 2 insertions, 2 deletions
diff --git a/bench/btl/actions/action_axpy.hh b/bench/btl/actions/action_axpy.hh
index 50759f6f6..f127426db 100644
--- a/bench/btl/actions/action_axpy.hh
+++ b/bench/btl/actions/action_axpy.hh
@@ -96,9 +96,9 @@ public :
}
inline void calculate( void ) {
- asm("#mybegin axpy");
+ BTL_ASM_COMMENT("mybegin axpy");
Interface::axpy(_coef,X,Y,_size);
- asm("#myend axpy");
+ BTL_ASM_COMMENT("myend axpy");
}
void check_result( void ){