From 42422b33cf83df12c3f90318dc176da108fd8f2a Mon Sep 17 00:00:00 2001 From: Evandro Menezes Date: Thu, 16 Aug 2018 17:03:22 +0000 Subject: [PATCH] [NFC] Fix typo in test cases llvm-svn: 339900 --- llvm/test/Transforms/InstCombine/pow-1.ll | 6 +++--- llvm/test/Transforms/InstCombine/pow-sqrt.ll | 1 - 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/llvm/test/Transforms/InstCombine/pow-1.ll b/llvm/test/Transforms/InstCombine/pow-1.ll index cef8a6c..1d01f23 100644 --- a/llvm/test/Transforms/InstCombine/pow-1.ll +++ b/llvm/test/Transforms/InstCombine/pow-1.ll @@ -129,7 +129,7 @@ define <2 x double> @test_simplify6v(<2 x double> %x) { define float @test_simplify7(float %x) { ; ANY-LABEL: @test_simplify7( -; ANY-NEXT: [[SQRTF:%.*]] = call float @sqrtf(float [[X:%.*]]) #0 +; ANY-NEXT: [[SQRTF:%.*]] = call float @sqrtf(float [[X:%.*]]) [[NUW_RO:#[0-9]+]] ; ANY-NEXT: [[ABS:%.*]] = call float @llvm.fabs.f32(float [[SQRTF]]) ; ANY-NEXT: [[ISINF:%.*]] = fcmp oeq float [[X]], 0xFFF0000000000000 ; ANY-NEXT: [[TMP1:%.*]] = select i1 [[ISINF]], float 0x7FF0000000000000, float [[ABS]] @@ -141,7 +141,7 @@ define float @test_simplify7(float %x) { define double @test_simplify8(double %x) { ; ANY-LABEL: @test_simplify8( -; ANY-NEXT: [[SQRT:%.*]] = call double @sqrt(double [[X:%.*]]) #0 +; ANY-NEXT: [[SQRT:%.*]] = call double @sqrt(double [[X:%.*]]) [[NUW_RO]] ; ANY-NEXT: [[ABS:%.*]] = call double @llvm.fabs.f64(double [[SQRT]]) ; ANY-NEXT: [[ISINF:%.*]] = fcmp oeq double [[X]], 0xFFF0000000000000 ; ANY-NEXT: [[TMP1:%.*]] = select i1 [[ISINF]], double 0x7FF0000000000000, double [[ABS]] @@ -307,7 +307,7 @@ define double @test_simplify17(double %x) { define float @test_simplify18(float %x) { ; CHECK-EXP10-LABEL: @test_simplify18( -; CHECK-EXP10-NEXT: [[__EXP10F:%.*]] = call float @__exp10f(float [[X:%.*]]) [[NUW_RO:#[0-9]+]] +; CHECK-EXP10-NEXT: [[__EXP10F:%.*]] = call float @__exp10f(float [[X:%.*]]) [[NUW_RO]] ; CHECK-EXP10-NEXT: ret float [[__EXP10F]] ; ; CHECK-NO-EXP10-LABEL: @test_simplify18( diff --git a/llvm/test/Transforms/InstCombine/pow-sqrt.ll b/llvm/test/Transforms/InstCombine/pow-sqrt.ll index 3ffcbe2..9fcca83 100644 --- a/llvm/test/Transforms/InstCombine/pow-sqrt.ll +++ b/llvm/test/Transforms/InstCombine/pow-sqrt.ll @@ -295,4 +295,3 @@ declare float @powf(float, float) attributes #0 = { nounwind readnone speculatable } attributes #1 = { nounwind readnone } - -- 2.7.4