diff options
author | Gwynne Raskind <gwynne@php.net> | 2011-08-07 16:31:21 +0000 |
---|---|---|
committer | Gwynne Raskind <gwynne@php.net> | 2011-08-07 16:31:21 +0000 |
commit | ef0e34580b3ef14faebf3fe680b0f6a8e312244f (patch) | |
tree | 88e0661a7c6e80feed93fc06fe794fa4dcea5a9c | |
parent | d4a716b19dc3c150f7ffcfba7463f49aefec7c6e (diff) | |
download | php-git-ef0e34580b3ef14faebf3fe680b0f6a8e312244f.tar.gz |
For 5.4, fix C++-style comments. For trunk, forward-port build fix.
-rw-r--r-- | Zend/zend_operators.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Zend/zend_operators.h b/Zend/zend_operators.h index 65db22b790..9b0c790f8a 100644 --- a/Zend/zend_operators.h +++ b/Zend/zend_operators.h @@ -616,7 +616,7 @@ static zend_always_inline int fast_sub_function(zval *result, zval *op1, zval *o "fildl (%2)\n\t" "fildl (%1)\n\t" #if defined(__clang__) && (__clang_major__ < 2 || (__clang_major__ == 2 && __clang_minor__ < 10)) - "fsubp %%st(1), %%st\n\t" // LLVM bug #9164 + "fsubp %%st(1), %%st\n\t" /* LLVM bug #9164 */ #else "fsubp %%st, %%st(1)\n\t" #endif @@ -640,7 +640,7 @@ static zend_always_inline int fast_sub_function(zval *result, zval *op1, zval *o "fildq (%2)\n\t" "fildq (%1)\n\t" #if defined(__clang__) && (__clang_major__ < 2 || (__clang_major__ == 2 && __clang_minor__ < 10)) - "fsubp %%st(1), %%st\n\t" // LLVM bug #9164 + "fsubp %%st(1), %%st\n\t" /* LLVM bug #9164 */ #else "fsubp %%st, %%st(1)\n\t" #endif |