; NOTE: Assertions have been autogenerated by utils/update_test_checks.py UTC_ARGS: --version 6 ; RUN: opt -S -mtriple=amdgcn-amd-amdhsa -passes=amdgpu-simplifylib %s | FileCheck %s define float @test_tdo_scalar_f32_atanpi() { ; CHECK-LABEL: define float @test_tdo_scalar_f32_atanpi() { ; CHECK-NEXT: [[ENTRY:.*:]] ; CHECK-NEXT: ret float 0.000000e+00 ; entry: %c = call float @_Z6atanpif(float 0.000000e+00) ret float %c } define <4 x float> @test_tdo_v2_f32_atanpi() { ; CHECK-LABEL: define <4 x float> @test_tdo_v2_f32_atanpi() { ; CHECK-NEXT: [[ENTRY:.*:]] ; CHECK-NEXT: ret <4 x float> ; entry: %c = call <4 x float> @_Z6atanpiDv4_f(<4 x float> ) ret <4 x float> %c } define half @test_tdo_scalar_f16_atanpi() { ; CHECK-LABEL: define half @test_tdo_scalar_f16_atanpi() { ; CHECK-NEXT: [[ENTRY:.*:]] ; CHECK-NEXT: ret half 0xH0000 ; entry: %c = call half @_Z6atanpiDh(half 0.000000e+00) ret half %c } define <4 x half> @test_tdo_v2_f16_atanpi() { ; CHECK-LABEL: define <4 x half> @test_tdo_v2_f16_atanpi() { ; CHECK-NEXT: [[ENTRY:.*:]] ; CHECK-NEXT: ret <4 x half> ; entry: %c = call <4 x half> @_Z6atanpiDv4_Dh(<4 x half> ) ret <4 x half> %c } define double @test_tdo_scalar_f64_atanpi() { ; CHECK-LABEL: define double @test_tdo_scalar_f64_atanpi() { ; CHECK-NEXT: [[ENTRY:.*:]] ; CHECK-NEXT: ret double 0.000000e+00 ; entry: %c = call double @_Z6atanpid(double 0.000000e+00) ret double %c } define <4 x double> @test_tdo_v2_f64_atanpi() { ; CHECK-LABEL: define <4 x double> @test_tdo_v2_f64_atanpi() { ; CHECK-NEXT: [[ENTRY:.*:]] ; CHECK-NEXT: ret <4 x double> ; entry: %c = call <4 x double> @_Z6atanpiDv4_d(<4 x double> ) ret <4 x double> %c } declare float @_Z6atanpif(float) declare <4 x float> @_Z6atanpiDv4_f(<4 x float>) declare half @_Z6atanpiDh(half) declare <4 x half> @_Z6atanpiDv4_Dh(<4 x half>) declare double @_Z6atanpid(double) declare <4 x double> @_Z6atanpiDv4_d(<4 x double>)