[PATCH] D111449: [flang] Fix capitalization of "ishft"
Pete Steinfeld via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Fri Oct 8 13:44:42 PDT 2021
This revision was automatically updated to reflect the committed changes.
Closed by commit rG0620b12209cf: [flang] Fix capitalization of "ishft" (authored by PeteSteinfeld).
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D111449/new/
https://reviews.llvm.org/D111449
Files:
flang/lib/Evaluate/fold-integer.cpp
Index: flang/lib/Evaluate/fold-integer.cpp
===================================================================
--- flang/lib/Evaluate/fold-integer.cpp
+++ flang/lib/Evaluate/fold-integer.cpp
@@ -615,7 +615,7 @@
// Second argument can be of any kind. However, it must be smaller or
// equal than BIT_SIZE. It can be converted to Int4 to simplify.
auto fptr{&Scalar<T>::ISHFT};
- if (name == "ISHFT") { // done in fptr definition
+ if (name == "ishft") { // done in fptr definition
} else if (name == "shifta") {
fptr = &Scalar<T>::SHIFTA;
} else if (name == "shiftr") {
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D111449.378348.patch
Type: text/x-patch
Size: 607 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20211008/339985fc/attachment.bin>
More information about the llvm-commits
mailing list