===================================================================
@@ -374,6 +374,12 @@ statement_sink_location (gimple stmt, ba
nearest to commondom. */
if (gimple_vuse (stmt))
{
+ /* Do not sink loads from hard registers. */
+ if (gimple_assign_single_p (stmt)
+ && TREE_CODE (gimple_assign_rhs1 (stmt)) == VAR_DECL
+ && DECL_HARD_REGISTER (gimple_assign_rhs1 (stmt)))
+ return false;
+
imm_use_iterator imm_iter;
use_operand_p use_p;
basic_block found = NULL;
===================================================================
@@ -0,0 +1,46 @@
+/* { dg-do compile } */
+/* { dg-options "-O2" } */
+
+struct autofs_sb_info
+{
+ int exp_timeout;
+};
+void *f;
+int g;
+static int fn1 (struct autofs_sb_info *p1)
+{
+ int a, b;
+ a = (
+ {
+ register __typeof__(0) c
+#if defined __x86_64__
+ asm("rdx")
+#endif
+ ;
+ b = c;
+ int d;
+ __typeof__(0) e;
+ e = p1->exp_timeout / 1000;
+ switch (0)
+ default:
+ asm("" : "=a"(d) : "0"(e), ""(0));
+ d;
+ });
+ if (a)
+ return 1;
+ if (b)
+ p1->exp_timeout = 0;
+ return 0;
+}
+
+int fn2 ()
+{
+ struct autofs_sb_info *h = f;
+ switch (g)
+ {
+ case 0 ?:
+0 : return fn1 (h);
+ default:
+ return 0;
+ }
+}