[PATCH] D128653: [PowerPC] Fix the check for scalar MASS conversion
Bardia Mahjour via Phabricator via cfe-commits
cfe-commits at lists.llvm.org
Tue Jun 28 14:46:31 PDT 2022
bmahjour added inline comments.
================
Comment at: clang/test/CodeGen/lower-mass-end-to-end.c:33
+// CHECK-MASS-AFN: __xl_sin
+// CHECK-NO-MASS-FAST-NOT: __xl_sin{{_finite}}
+// CHECK-NO-MASS-AFN-NOT: __xl_sin{{_finite}}
----------------
I don't think this works the way you expect it:
```
> cat input.txt
; CHECK-NOT: __xl_sin{{_finite}}
> echo "__xl_sin" | ./bin/FileCheck ./input.txt
>
```
this seems closer to what you want:
```
; CHECK-NOT: {{__xl_sin|__xl_sin_finite}}
```
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D128653/new/
https://reviews.llvm.org/D128653
More information about the cfe-commits
mailing list