Mercurial > emacs
annotate src/cxux-crt0.s @ 58333:285e9f39fa7d
(calc-rewrite-selection): Make rules a local variable.
(calc-rewr-sel): New variable.
(calc-rewrite-selection, calc-locate-selection-marker, calc-rewrite):
Use the declared variable calc-rewr-sel instead of sel.
(math-rewrite): Use let* to declare variables.
(math-mt-many): Declare it.
(math-rewrite-whole-expr): New variable.
(math-rewrite, math-rewrite-phase): Replace variable expr by declared
variable.
(math-import-list): Declare it.
(math-rewrite-heads-heads, math-rewrite-heads-skips)
(math-rewrite-heads-blanks ): New variables.
(math-rewrite-heads, math-rewrite-heads-rec): Replace variables heads,
skips and blanks by declared variables.
(math-regs, math-num-regs, math-prog-last, math-bound-vars)
(math-conds, math-copy-neg, math-rhs, math-pattern, math-remembering)
(math-aliased-vars): Declare them.
(math-rwcomp-subst-old, math-rwcomp-subst-new)
(math-rwcomp-subst-old-func, math-rwcomp-subst-new-func):
New variables.
(math-rwcomp-substitute, math-rwcomp-subst-rec): Replace variables
old, new, old-func and new-func by declared variables.
(math-rwcomp-assoc-args, math-rwcomp-addsub-args): Remove unnecessary
variable.
(math-rewrite-phase): Declare it.
(math-apply-rw-regs): New variable.
(math-apply-rewrites, math-rwapply-replace-regs,
math-rwapply-reg-looks-negp): Replace variable regs by declared variable.
(math-apply-rw-ruleset): New variable.
(math-apply-rewrites, math-rwapply-remember): Replace variable ruleset
by declared variable.
author | Jay Belanger <jay.p.belanger@gmail.com> |
---|---|
date | Fri, 19 Nov 2004 21:03:48 +0000 |
parents | 695cf19ef79e |
children | a0d1312ede66 375f2633d815 |
rev | line source |
---|---|
25843 | 1 /* |
2 * External symbol setup file for GNU Emacs on CX/UX | |
3 * Copyright (C) 1990 Free Software Foundation, Inc. | |
4 * | |
5 * This file is part of GNU Emacs. | |
6 * | |
7 * GNU Emacs is distributed in the hope that it will be useful, | |
8 * but WITHOUT ANY WARRANTY. No author or distributor | |
9 * accepts responsibility to anyone for the consequences of using it | |
10 * or for whether it serves any particular purpose or works at all, | |
11 * unless he says so in writing. Refer to the GNU Emacs General Public | |
12 * License for full details. | |
13 * | |
14 * Everyone is granted permission to copy, modify and redistribute | |
15 * GNU Emacs, but only under the conditions described in the | |
16 * GNU Emacs General Public License. A copy of this license is | |
17 * supposed to have been given to you along with GNU Emacs so you | |
18 * can know your rights and responsibilities. It should be in a | |
19 * file named COPYING. Among other things, the copyright notice | |
20 * and this notice must be preserved on all copies. | |
21 */ | |
22 | |
23 /* | |
24 * This file makes the start of the text and data regions of the program | |
25 * clearly visible to the GNU Emacs C source code, without any dependencies | |
26 * on any changes made to the standard C runtime startup module, crt0.o. | |
27 * It depends, however, on this file being passed down to the linker (ld) | |
28 * before any others, and the linker's behavior of assigning increasing | |
29 * addresses as it finds symbols. | |
30 */ | |
31 /* C symbol _start marks beginning of text region. */ | |
32 .text | |
33 .globl __start | |
34 __start: | |
35 /* C symbol data_start marks beginning of data region. */ | |
36 .data | |
37 .globl _data_start | |
38 _data_start: .space 4 | |
52401 | 39 |
40 /* arch-tag: ba84e4dc-615d-4a81-898c-f5b98ec71c9d | |
41 (do not change this comment) */ |