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.
11 lines
349 B
11 lines
349 B
; RUN: opt < %s -globalopt -S | FileCheck %s
|
|
; CHECK: load volatile
|
|
@t0.1441 = internal global double 0x3FD5555555555555, align 8 ; <double*> [#uses=1]
|
|
|
|
define double @foo() nounwind {
|
|
entry:
|
|
%tmp1 = load volatile double, double* @t0.1441, align 8 ; <double> [#uses=2]
|
|
%tmp4 = fmul double %tmp1, %tmp1 ; <double> [#uses=1]
|
|
ret double %tmp4
|
|
}
|