From 146b150f1e7d737f59384c6c2469469ef2970076 Mon Sep 17 00:00:00 2001 From: Yuta Saito Date: Sun, 11 Jun 2023 12:23:03 +0000 Subject: [PATCH] [wasm] Revert unnecessary CC attr in Numeric.cpp --- stdlib/public/runtime/Numeric.cpp | 2 -- 1 file changed, 2 deletions(-) diff --git a/stdlib/public/runtime/Numeric.cpp b/stdlib/public/runtime/Numeric.cpp index 40421d0336ef4..ac3933e6b62c6 100644 --- a/stdlib/public/runtime/Numeric.cpp +++ b/stdlib/public/runtime/Numeric.cpp @@ -50,12 +50,10 @@ static T convert(IntegerLiteral value) { return result; } -SWIFT_CC(swift) float swift::swift_intToFloat32(IntegerLiteral value) { return convert(value); } -SWIFT_CC(swift) double swift::swift_intToFloat64(IntegerLiteral value) { return convert(value); }