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/cp | |
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/cp')
-rw-r--r-- | gcc/cp/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/cp/typeck.c | 4 |
2 files changed, 7 insertions, 2 deletions
diff --git a/gcc/cp/ChangeLog b/gcc/cp/ChangeLog index 63dcf9161ca..bfb4218d965 100644 --- a/gcc/cp/ChangeLog +++ b/gcc/cp/ChangeLog @@ -1,3 +1,8 @@ +2003-09-28 Richard Henderson <rth@redhat.com> + + * typeck.c (c_expand_asm_operands): Take location_t, instead of + individual file and line. + 2003-09-28 Andreas Jaeger <aj@suse.de> * decl.c (cxx_builtin_type_decls): Convert to ISO C90 function diff --git a/gcc/cp/typeck.c b/gcc/cp/typeck.c index 32447b6807b..5c45976bffe 100644 --- a/gcc/cp/typeck.c +++ b/gcc/cp/typeck.c @@ -5750,7 +5750,7 @@ convert_for_initialization (tree exp, tree type, tree rhs, int flags, void c_expand_asm_operands (tree string, tree outputs, tree inputs, tree clobbers, - int vol, const char *filename, int line) + int vol, location_t locus) { int noutputs = list_length (outputs); register int i; @@ -5765,7 +5765,7 @@ c_expand_asm_operands (tree string, tree outputs, tree inputs, tree clobbers, /* Generate the ASM_OPERANDS insn; store into the TREE_VALUEs of OUTPUTS some trees for where the values were actually stored. */ - expand_asm_operands (string, outputs, inputs, clobbers, vol, filename, line); + expand_asm_operands (string, outputs, inputs, clobbers, vol, locus); /* Copy all the intermediate outputs into the specified outputs. */ for (i = 0, tail = outputs; tail; tail = TREE_CHAIN (tail), i++) |