Use "isa" since the variable isn't used.
[llvm-complete.git] / test / Analysis / ConstantFolding / fneg.ll
blob70a2fe2a4bddce42f5d3e557fb5bd1a7a507c85a
1 ; NOTE: Assertions have been autogenerated by utils/update_test_checks.py
2 ; RUN: opt < %s -constprop -S | FileCheck %s
4 define float @fneg_constant() {
5 ; CHECK-LABEL: @fneg_constant(
6 ; CHECK-NEXT:    ret float 0.000000e+00
8   %r = fneg float -0.0
9   ret float %r
12 define float @fneg_undef() {
13 ; CHECK-LABEL: @fneg_undef(
14 ; CHECK-NEXT:    ret float undef
16   %r = fneg float undef
17   ret float %r
20 define <4 x float> @fneg_constant_elts_v4f32() {
21 ; CHECK-LABEL: @fneg_constant_elts_v4f32(
22 ; CHECK-NEXT:    ret <4 x float> <float 0.000000e+00, float -0.000000e+00, float 1.000000e+00, float -1.000000e+00>
24   %r = fneg <4 x float> <float -0.0, float 0.0, float -1.0, float 1.0>
25   ret <4 x float> %r
28 define <4 x float> @fneg_constant_undef_elts_v4f32() {
29 ; CHECK-LABEL: @fneg_constant_undef_elts_v4f32(
30 ; CHECK-NEXT:    ret <4 x float> <float 0.000000e+00, float undef, float undef, float -1.000000e+00>
32   %r = fneg <4 x float> <float -0.0, float undef, float undef, float 1.0>
33   ret <4 x float> %r
36 define <4 x float> @fneg_constant_all_undef_elts_v4f32() {
37 ; CHECK-LABEL: @fneg_constant_all_undef_elts_v4f32(
38 ; CHECK-NEXT:    ret <4 x float> undef
40   %r = fneg <4 x float> <float undef, float undef, float undef, float undef>
41   ret <4 x float> %r