; RUN: llc -verify-machineinstrs -mtriple=powerpc-unknown-linux-gnu -O1 < %s | FileCheck %s ; double x, y; ; ; void foo1() ; { ; x = y = 1.1; ; for (int i = 0; i < 175; i++) ; y = x + y; ; } ; void foo2() ; { ; x = y = 1.1; ; for (int i = 0; i < 175; i++) ; y = x - y; ; } ; void foo3() ; { ; x = y = 1.1; ; for (int i = 0; i < 175; i++) ; y = x * y; ; } ; void foo4() ; { ; x = y = 1.1; ; for (int i = 0; i < 175; i++) ; y = x / y; ; } target datalayout = "E-m:e-p:32:32-i64:64-n32" target triple = "powerpc-buildroot-linux-gnu" @y = common global double 0.000000e+00, align 8 @x = common global double 0.000000e+00, align 8 define void @foo1() #0 { store double 1.100000e+00, double* @y, align 8 store double 1.100000e+00, double* @x, align 8 br label %2 ;