* src/vm/jit/alpha/asmpart.S: Use % instead of @ for progbits as ARM's
authortwisti <none@none>
Mon, 9 Apr 2007 17:23:55 +0000 (17:23 +0000)
committertwisti <none@none>
Mon, 9 Apr 2007 17:23:55 +0000 (17:23 +0000)
assembler uses @ as comment character.
* src/vm/jit/arm/asmpart.S: Likewise.
* src/vm/jit/i386/asmpart.S: Likewise.
* src/vm/jit/mips/asmpart.S: Likewise.
* src/vm/jit/powerpc/asmpart.S: Likewise.
* src/vm/jit/powerpc64/asmpart.S: Likewise.
* src/vm/jit/s390/asmpart.S: Likewise.
* src/vm/jit/sparc64/asmpart.S: Likewise.
* src/vm/jit/x86_64/asmpart.S: Likewise.

src/vm/jit/alpha/asmpart.S
src/vm/jit/arm/asmpart.S
src/vm/jit/i386/asmpart.S
src/vm/jit/mips/asmpart.S
src/vm/jit/powerpc/asmpart.S
src/vm/jit/powerpc64/asmpart.S
src/vm/jit/s390/asmpart.S
src/vm/jit/sparc64/asmpart.S
src/vm/jit/x86_64/asmpart.S

index 25ceb1da460d34c07988017cc1f80f030117149d..d5ba25312f08e4eb544d8420cf9e9c04dac4c08a 100644 (file)
@@ -22,7 +22,7 @@
    Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
    02110-1301, USA.
 
-   $Id: asmpart.S 7661 2007-04-03 22:29:59Z twisti $
+   $Id: asmpart.S 7678 2007-04-09 17:23:55Z twisti $
 
 */
 
@@ -854,7 +854,7 @@ asm_cacheflush:
 /* disable exec-stacks ********************************************************/
 
 #if defined(__linux__) && defined(__ELF__)
-       .section .note.GNU-stack,"",@progbits
+       .section .note.GNU-stack,"",%progbits
 #endif
 
 
index 3b7ffe30c3aed55f5b6412306060169f8cf543a1..fae35ce6df7dc5499cfdff46ed2b20a7203295d3 100644 (file)
@@ -22,7 +22,7 @@
    Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
    02110-1301, USA.
 
-   $Id: asmpart.S 7661 2007-04-03 22:29:59Z twisti $
+   $Id: asmpart.S 7678 2007-04-09 17:23:55Z twisti $
 
 */
 
@@ -447,7 +447,7 @@ _crit_end:
 /* disable exec-stacks ********************************************************/
 
 #if defined(__linux__) && defined(__ELF__)
-       .section .note.GNU-stack,"",@progbits
+       .section .note.GNU-stack,"",%progbits
 #endif
 
 
index 43bdf314582b8e05185df068e94294aff838a3ff..f40b406a3e981e795b81fc938abbc9785f89820f 100644 (file)
@@ -22,7 +22,7 @@
    Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
    02110-1301, USA.
 
-   $Id: asmpart.S 7661 2007-04-03 22:29:59Z twisti $
+   $Id: asmpart.S 7678 2007-04-09 17:23:55Z twisti $
 
 */
 
@@ -708,13 +708,6 @@ asm_criticalsections:
        .long 0
 
 
-/* disable exec-stacks ********************************************************/
-
-#if defined(__linux__) && defined(__ELF__)
-       .section .note.GNU-stack,"",@progbits
-#endif
-
-
 /* asm_get_cycle_count *********************************************************
 
    Get the current time-stamp counter from the CPU.
@@ -726,6 +719,13 @@ asm_get_cycle_count:
        ret
 
 
+/* disable exec-stacks ********************************************************/
+
+#if defined(__linux__) && defined(__ELF__)
+       .section .note.GNU-stack,"",%progbits
+#endif
+
+
 /*
  * These are local overrides for various environment variables in Emacs.
  * Please do not remove this and leave it at the end of the file, where
index 8ef900148aa777dd0923cebdf1b9efba5ed59c04..a2768dfe41524ee68d22e13654d1ac03c21281aa 100644 (file)
@@ -22,7 +22,7 @@
    Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
    02110-1301, USA.
 
-   $Id: asmpart.S 7661 2007-04-03 22:29:59Z twisti $
+   $Id: asmpart.S 7678 2007-04-09 17:23:55Z twisti $
 
 */
 
@@ -1073,7 +1073,7 @@ compare_and_swap:
 /* disable exec-stacks ********************************************************/
 
 #if defined(__linux__) && defined(__ELF__)
-       .section .note.GNU-stack,"",@progbits
+       .section .note.GNU-stack,"",%progbits
 #endif
 
 
index b447f8090fb32f65b573bc4651057973445ddbee..7d8ce2f4885b56095d0f54bacd0f8ab6e8764816 100644 (file)
@@ -22,7 +22,7 @@
    Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
    02110-1301, USA.
 
-   $Id: asmpart.S 7661 2007-04-03 22:29:59Z twisti $
+   $Id: asmpart.S 7678 2007-04-09 17:23:55Z twisti $
 
 */
 
@@ -1697,7 +1697,7 @@ L_replace_free_safestack$lazy_ptr:
 /* disable exec-stacks ********************************************************/
 
 #if defined(__linux__) && defined(__ELF__)
-       .section .note.GNU-stack,"",@progbits
+       .section .note.GNU-stack,"",%progbits
 #endif
 
 
index 921eb938980d6ddc9c54b0c19a7ef4bd41225794..af871ae593ace58e176260d07a51f93bcbbdbc54 100644 (file)
@@ -22,7 +22,7 @@
    Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
    02110-1301, USA.
 
-   $Id: asmpart.S 7661 2007-04-03 22:29:59Z twisti $
+   $Id: asmpart.S 7678 2007-04-09 17:23:55Z twisti $
 
 */
 
@@ -1553,7 +1553,7 @@ L_replace_me$lazy_ptr:
 /* disable exec-stacks ********************************************************/
 
 #if defined(__linux__) && defined(__ELF__)
-       .section .note.GNU-stack,"",@progbits
+       .section .note.GNU-stack,"",%progbits
 #endif
 
 
index 0817e0abeffe2c6962abc6cf51c10f261236e24e..ff55bc90e58e7a5e54ac8c348383f7d40cde248d 100644 (file)
@@ -22,7 +22,7 @@
    Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
    02110-1301, USA.
 
-   $Id: asmpart.S 7661 2007-04-03 22:29:59Z twisti $
+   $Id: asmpart.S 7678 2007-04-09 17:23:55Z twisti $
 
 */
 
@@ -1014,7 +1014,7 @@ asm_criticalsections:
 #if 0
 
 #if defined(__linux__) && defined(__ELF__)
-       .section .note.GNU-stack,"",@progbits
+       .section .note.GNU-stack,"",%progbits
 #endif
 
 
index c19e01e6280dc9b3438aba759e24628d944ccdd5..2b2abed3faa28ddf832b1fcf60ca2041e0910381 100644 (file)
@@ -442,4 +442,23 @@ asm_criticalsections:
     .xword   0
 
 
+/* disable exec-stacks ********************************************************/
 
+#if defined(__linux__) && defined(__ELF__)
+       .section .note.GNU-stack,"",%progbits
+#endif
+
+
+/*
+ * These are local overrides for various environment variables in Emacs.
+ * Please do not remove this and leave it at the end of the file, where
+ * Emacs will automagically detect them.
+ * ---------------------------------------------------------------------
+ * Local variables:
+ * mode: asm
+ * indent-tabs-mode: t
+ * c-basic-offset: 4
+ * tab-width: 4
+ * End:
+ * vim:noexpandtab:sw=4:ts=4:
+ */
index 68d17465b56b83fe8be68e748271921a9b2df062..20b343895121153c46542eda72a775fb2824d772 100644 (file)
@@ -22,7 +22,7 @@
    Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
    02110-1301, USA.
 
-   $Id: asmpart.S 7661 2007-04-03 22:29:59Z twisti $
+   $Id: asmpart.S 7678 2007-04-09 17:23:55Z twisti $
 
 */
 
@@ -833,7 +833,7 @@ asm_criticalsections:
 /* disable exec-stacks ********************************************************/
 
 #if defined(__linux__) && defined(__ELF__)
-       .section .note.GNU-stack,"",@progbits
+       .section .note.GNU-stack,"",%progbits
 #endif