[PATCH] D83065: Added runtime function definitions
Zachary Selk via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Thu Jul 2 12:58:03 PDT 2020
zacharyselk updated this revision to Diff 275195.
zacharyselk added a comment.
Removed extraneous bit of debugging code that was missed
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D83065/new/
https://reviews.llvm.org/D83065
Files:
flang/runtime/io-api.cpp
Index: flang/runtime/io-api.cpp
===================================================================
--- flang/runtime/io-api.cpp
+++ flang/runtime/io-api.cpp
@@ -846,7 +846,6 @@
bool IONAME(OutputComplex32)(Cookie cookie, float r, float z) {
IoStatementState &io{*cookie};
if (io.get_if<ListDirectedStatementState<Direction::Output>>()) {
- std::cout << "32 bit\n";
DataEdit real, imaginary;
real.descriptor = DataEdit::ListDirectedRealPart;
imaginary.descriptor = DataEdit::ListDirectedImaginaryPart;
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D83065.275195.patch
Type: text/x-patch
Size: 527 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20200702/5c2e38cd/attachment.bin>
More information about the llvm-commits
mailing list