You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 lines
461 B

; RUN: llc < %s -march=x86 -mattr=sse2 | grep movsd | count 5
; RUN: llc < %s -march=x86 -mattr=sse2 -O0 | grep -v esp | grep movsd | count 5
@x = external global double
define void @foo() nounwind {
%a = load volatile double, double* @x
store volatile double 0.0, double* @x
store volatile double 0.0, double* @x
%b = load volatile double, double* @x
ret void
}
define void @bar() nounwind {
%c = load volatile double, double* @x
ret void
}