Commit 4c2da7f2 by Roger Sayle Committed by Roger Sayle

emit-rtl.c (gen_complex_constant_part): Remove unnecessary test of TREE_CONSTANT_POOL_ADDRESS_P.


	* emit-rtl.c (gen_complex_constant_part):  Remove unnecessary
	test of TREE_CONSTANT_POOL_ADDRESS_P.

Co-Authored-By: Zack Weinberg <zack@codesourcery.com>

From-SVN: r67331
parent e91e4f6c
2003-06-02 Roger Sayle <roger@eyesopen.com>
Zack Weinberg <zack@codesourcery.com>
* emit-rtl.c (gen_complex_constant_part): Remove unnecessary
test of TREE_CONSTANT_POOL_ADDRESS_P.
2003-06-02 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
* mips.c: Don't include output.h twice.
......
......@@ -1316,8 +1316,7 @@ gen_complex_constant_part (mode, x, imagpart_p)
tree decl, part;
if (GET_CODE (x) == MEM
&& GET_CODE (XEXP (x, 0)) == SYMBOL_REF
&& TREE_CONSTANT_POOL_ADDRESS_P (XEXP (x, 0)))
&& GET_CODE (XEXP (x, 0)) == SYMBOL_REF)
{
decl = SYMBOL_REF_DECL (XEXP (x, 0));
if (decl != NULL_TREE && TREE_CODE (decl) == COMPLEX_CST)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment