diff options
author | rth <rth@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-09-28 19:09:53 +0000 |
---|---|---|
committer | rth <rth@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-09-28 19:09:53 +0000 |
commit | 867bd639d8f8452cc660b539a402f629b5797695 (patch) | |
tree | b1c014a6e4f66b8d0ee1d4aae161e40cbaf92c60 /gcc/c-common.h | |
parent | e877ef454fbd96bf4a93b2e37cd04c5c6c11a93f (diff) | |
download | gcc-867bd639d8f8452cc660b539a402f629b5797695.tar.gz |
* stmt.c (expand_asm_operands): Take a location_t, instead of
individual file and line.
* c-typeck.c (c_expand_asm_operands): Likewise.
* tree.h (expand_asm_operands): Update decl.
* c-common.h (c_expand_asm_operands): Likewise.
* c-semantics (genrtl_asm_stmt): Update call.
cp/
* typeck.c (c_expand_asm_operands): Take location_t, instead of
individual file and line.
ada/
* trans.c (tree_transform): Update call to expand_asm_operands.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@71884 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/c-common.h')
-rw-r--r-- | gcc/c-common.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/c-common.h b/gcc/c-common.h index c8a0ecc9c6d..ccfc779bee0 100644 --- a/gcc/c-common.h +++ b/gcc/c-common.h @@ -1251,7 +1251,7 @@ extern tree build_return_stmt (tree); initializers and cleanups. */ #define COMPOUND_STMT_BODY_BLOCK(NODE) TREE_LANG_FLAG_3 (NODE) -extern void c_expand_asm_operands (tree, tree, tree, tree, int, const char *, int); +extern void c_expand_asm_operands (tree, tree, tree, tree, int, location_t); /* These functions must be defined by each front-end which implements a variant of the C language. They are used in c-common.c. */ |