diff options
| author | m.hayes <m.hayes@138bc75d-0d04-0410-961f-82ee72b054a4> | 2000-04-02 09:19:17 +0000 |
|---|---|---|
| committer | m.hayes <m.hayes@138bc75d-0d04-0410-961f-82ee72b054a4> | 2000-04-02 09:19:17 +0000 |
| commit | e28c262c90c0dbbc9c4532be0f1c09935e7f4bb5 (patch) | |
| tree | 842050419c4322dd07aea4745459fc4d522d7451 | |
| parent | f7455f234529beab985a477e4becb8ce3d1a6058 (diff) | |
| download | ppe42-gcc-e28c262c90c0dbbc9c4532be0f1c09935e7f4bb5.tar.gz ppe42-gcc-e28c262c90c0dbbc9c4532be0f1c09935e7f4bb5.zip | |
* config/c4x/c4x.c (c4x_function_arg): Check for void_type_node
before checking MUST_PASS_IN_STACK.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@32865 138bc75d-0d04-0410-961f-82ee72b054a4
| -rw-r--r-- | gcc/ChangeLog | 5 | ||||
| -rw-r--r-- | gcc/config/c4x/c4x.c | 8 |
2 files changed, 12 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 9f8c23501de..83c2d2914ce 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2000-04-02 Michael Hayes <m.hayes@elec.canterbury.ac.nz> + + * config/c4x/c4x.c (c4x_function_arg): Check for void_type_node + before checking MUST_PASS_IN_STACK. + 2000-04-02 Neil Booth <NeilB@earthling.net> * cppexp.c: New FINISHED dummy token. Combine operator initial diff --git a/gcc/config/c4x/c4x.c b/gcc/config/c4x/c4x.c index 3ee934c08b5..9972f472f68 100644 --- a/gcc/config/c4x/c4x.c +++ b/gcc/config/c4x/c4x.c @@ -603,6 +603,11 @@ c4x_function_arg (cum, mode, type, named) cum->init = 1; } + /* This marks the last argument. We don't need to pass this through + to the call insn. */ + if (type == void_type_node) + return 0; + if (! TARGET_MEMPARM && named && type @@ -742,7 +747,8 @@ c4x_assembler_function_p () tree type; type = TREE_TYPE (current_function_decl); - return lookup_attribute ("assembler", TYPE_ATTRIBUTES (type)) != NULL; + return (lookup_attribute ("assembler", TYPE_ATTRIBUTES (type)) != NULL) + || (lookup_attribute ("naked", TYPE_ATTRIBUTES (type)) != NULL); } |

