Mercurial > hg > CbC > CbC_llvm
comparison flang/runtime/copy.h @ 252:1f2b6ac9f198 llvm-original
LLVM16-1
author | Shinji KONO <kono@ie.u-ryukyu.ac.jp> |
---|---|
date | Fri, 18 Aug 2023 09:04:13 +0900 |
parents | c4bab56944e8 |
children |
comparison
equal
deleted
inserted
replaced
237:c80f45b162ad | 252:1f2b6ac9f198 |
---|---|
16 | 16 |
17 namespace Fortran::runtime { | 17 namespace Fortran::runtime { |
18 | 18 |
19 // Assigns to uninitialized storage. | 19 // Assigns to uninitialized storage. |
20 // Duplicates allocatable & automatic components. | 20 // Duplicates allocatable & automatic components. |
21 void CopyElement(const Descriptor &to, const SubscriptValue toAt[], | 21 RT_API_ATTRS void CopyElement(const Descriptor &to, const SubscriptValue toAt[], |
22 const Descriptor &from, const SubscriptValue fromAt[], Terminator &); | 22 const Descriptor &from, const SubscriptValue fromAt[], Terminator &); |
23 | 23 |
24 // Copies data from one allocated descriptor's array to another. | 24 // Copies data from one allocated descriptor's array to another. |
25 void CopyArray(const Descriptor &to, const Descriptor &from, Terminator &); | 25 RT_API_ATTRS void CopyArray( |
26 const Descriptor &to, const Descriptor &from, Terminator &); | |
26 | 27 |
27 } // namespace Fortran::runtime | 28 } // namespace Fortran::runtime |
28 #endif // FORTRAN_RUNTIME_COPY_H_ | 29 #endif // FORTRAN_RUNTIME_COPY_H_ |