Remove TFmode check for X86_64_INTEGER_CLASS

Backport from mainline
	PR target/60207
	* config/i386/i386.c (construct_container): Remove TFmode check
	for X86_64_INTEGER_CLASS.

From-SVN: r207926
This commit is contained in:
H.J. Lu 2014-02-19 22:45:34 +00:00 committed by H.J. Lu
parent 2cd91876ef
commit 5406a4b260
2 changed files with 10 additions and 1 deletions

View File

@ -1,3 +1,12 @@
2014-02-19 H.J. Lu <hongjiu.lu@intel.com>
Backport from mainline
2014-02-19 H.J. Lu <hongjiu.lu@intel.com>
PR target/60207
* config/i386/i386.c (construct_container): Remove TFmode check
for X86_64_INTEGER_CLASS.
2014-02-18 Kai Tietz <ktietz@redhat.com>
Backport from mainline

View File

@ -6360,7 +6360,7 @@ construct_container (enum machine_mode mode, enum machine_mode orig_mode,
return gen_rtx_REG (XFmode, FIRST_STACK_REG);
if (n == 2 && regclass[0] == X86_64_INTEGER_CLASS
&& regclass[1] == X86_64_INTEGER_CLASS
&& (mode == CDImode || mode == TImode || mode == TFmode)
&& (mode == CDImode || mode == TImode)
&& intreg[0] + 1 == intreg[1])
return gen_rtx_REG (mode, intreg[0]);