diff options
author | hubicka <hubicka@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-10-18 20:32:57 +0000 |
---|---|---|
committer | hubicka <hubicka@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-10-18 20:32:57 +0000 |
commit | 3bb4cd826e17bb95b3e98901f5e999ec34599352 (patch) | |
tree | f81fc01d3f340196ef6e03da1e92100707ed9f3c /gcc/integrate.c | |
parent | 11f4589c333690f0c023f8ca4a7bba8304a67d85 (diff) | |
download | gcc-3bb4cd826e17bb95b3e98901f5e999ec34599352.tar.gz |
* integrate.c (copy_decl_for_inlining): Revert previous patch.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@72653 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/integrate.c')
-rw-r--r-- | gcc/integrate.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/gcc/integrate.c b/gcc/integrate.c index 37a73265e6a..fa5d71efa00 100644 --- a/gcc/integrate.c +++ b/gcc/integrate.c @@ -381,10 +381,7 @@ copy_decl_for_inlining (tree decl, tree from_fn, tree to_fn) /* Set the DECL_ABSTRACT_ORIGIN so the debugging routines know what declaration inspired this copy. */ - if (DECL_ABSTRACT_ORIGIN (decl)) - DECL_ABSTRACT_ORIGIN (copy) = DECL_ABSTRACT_ORIGIN (decl); - else - DECL_ABSTRACT_ORIGIN (copy) = DECL_ORIGIN (decl); + DECL_ABSTRACT_ORIGIN (copy) = DECL_ORIGIN (decl); /* The new variable/label has no RTL, yet. */ if (!TREE_STATIC (copy) && !DECL_EXTERNAL (copy)) |