Revert " [LoongArch][ISel] Check the number of sign bits in `PatGprGpr_32` (#107432)"
[llvm-project.git] / llvm / test / CodeGen / PowerPC / fsqrt.ll
blob6eb7dcfd7ba02b8a2b8143658a4f57420713aca7
1 ; fsqrt should be generated when the fsqrt feature is enabled, but not 
2 ; otherwise.
4 ; RUN: llc -verify-machineinstrs < %s -mattr=-vsx -mtriple=powerpc-unknown-linux-gnu -mattr=+fsqrt | FileCheck %s -check-prefix=SQRT
5 ; RUN: llc -verify-machineinstrs < %s -mattr=-vsx -mtriple=powerpc-unknown-linux-gnu -mattr=-fsqrt | FileCheck %s -check-prefix=NSQRT
7 ; SQRT: X:
8 ; SQRT: fsqrt 1, 1
9 ; SQRT: blr
11 ; NSQRT: X:
12 ; NSQRT-NOT: fsqrt 1, 1
13 ; NSQRT: blr
15 declare double @llvm.sqrt.f64(double)
17 define double @X(double %Y) {
18         %Z = call double @llvm.sqrt.f64( double %Y )            ; <double> [#uses=1]
19         ret double %Z