Skip to content

Commit 7a9473b

Browse files
committed
[flang-rt] Fixed build issue in flang-runtime-cuda-clang.
1 parent 0e4116a commit 7a9473b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

flang-rt/lib/runtime/transformational.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -344,7 +344,7 @@ static inline RT_API_ATTRS void CheckConformabilityForShallowCopy(
344344
if (d1.type() != d2.type()) {
345345
terminator.Crash("Incompatible arguments to %s: %s has type code %d, %s "
346346
"has type code %d",
347-
funcName, d1Name, d1.type(), d2Name, d2.type());
347+
funcName, d1Name, d1.type().raw(), d2Name, d2.type().raw());
348348
}
349349
const DescriptorAddendum *d1Addendum{d1.Addendum()};
350350
const typeInfo::DerivedType *d1Derived{

0 commit comments

Comments
 (0)