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-semantics.c | |
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-semantics.c')
-rw-r--r-- | gcc/c-semantics.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/c-semantics.c b/gcc/c-semantics.c index 4163d44..a9825c8 100644 --- a/gcc/c-semantics.c +++ b/gcc/c-semantics.c @@ -749,7 +749,7 @@ genrtl_asm_stmt (tree cv_qualifier, tree string, tree output_operands, else c_expand_asm_operands (string, output_operands, input_operands, clobbers, cv_qualifier != NULL_TREE, - input_filename, input_line); + input_location); } /* Generate the RTL for a CLEANUP_STMT. */ |