diff options
author | Richard Henderson <rth@redhat.com> | 2003-09-28 12:09:53 -0700 |
---|---|---|
committer | Richard Henderson <rth@gcc.gnu.org> | 2003-09-28 12:09:53 -0700 |
commit | 177560b2d073ac3034e451c1af2bb578f47aedea (patch) | |
tree | b1c014a6e4f66b8d0ee1d4aae161e40cbaf92c60 /gcc/c-common.h | |
parent | 37e2180d7a57f86c0bc2b1463b99463784a8176e (diff) | |
download | gcc-177560b2d073ac3034e451c1af2bb578f47aedea.zip gcc-177560b2d073ac3034e451c1af2bb578f47aedea.tar.gz gcc-177560b2d073ac3034e451c1af2bb578f47aedea.tar.bz2 |
stmt.c (expand_asm_operands): Take a location_t, instead of individual file and line.
* 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.
From-SVN: r71884
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 c8a0ecc..ccfc779 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. */ |