diff options
author | dnovillo <dnovillo@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-05-13 06:41:07 +0000 |
---|---|---|
committer | dnovillo <dnovillo@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-05-13 06:41:07 +0000 |
commit | 4ee9c6840ad3fc92a9034343278a1e476ad6872a (patch) | |
tree | a2568888a519c077427b133de9ece5879a8484a5 /gcc/c-common.def | |
parent | ebb338380ab170c91e64d38038e6b5ce930d69a1 (diff) | |
download | gcc-4ee9c6840ad3fc92a9034343278a1e476ad6872a.tar.gz |
Merge tree-ssa-20020619-branch into mainline.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@81764 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/c-common.def')
-rw-r--r-- | gcc/c-common.def | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/gcc/c-common.def b/gcc/c-common.def index dfdec8c4df0..3282cc603e4 100644 --- a/gcc/c-common.def +++ b/gcc/c-common.def @@ -79,7 +79,7 @@ DEFTREECODE (GOTO_STMT, "goto_stmt", 'e', 1) DEFTREECODE (LABEL_STMT, "label_stmt", 'e', 1) /* Used to represent an inline assembly statement. */ -DEFTREECODE (ASM_STMT, "asm_stmt", 'e', 5) +DEFTREECODE (ASM_STMT, "asm_stmt", 'e', 4) /* A SCOPE_STMT marks the beginning or end of a scope. If SCOPE_BEGIN_P holds, then this is the start of a scope. If @@ -89,10 +89,6 @@ DEFTREECODE (ASM_STMT, "asm_stmt", 'e', 5) variables declared in this scope. */ DEFTREECODE (SCOPE_STMT, "scope_stmt", 'e', 1) -/* A FILE_STMT marks the spot where a function changes files. It has no - other semantics. FILE_STMT_FILENAME gives the name. */ -DEFTREECODE (FILE_STMT, "file_stmt", 'e', 1) - /* Used to represent a CASE_LABEL. The operands are CASE_LOW and CASE_HIGH, respectively. If CASE_LOW is NULL_TREE, the label is a 'default' label. If CASE_HIGH is NULL_TREE, the label is a normal case |