summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLubomir Litchev <lubol@microsoft.com>2016-01-07 15:30:15 -0800
committerLubomir Litchev <lubol@microsoft.com>2016-01-07 15:30:15 -0800
commitd6738b0c6c90efcd6da1a47f85e73378e7caf3b1 (patch)
tree237a1d437e259f9a4a8eeb0695132c6ec50da481
parent85f256e9b41cac20834d9695675e3ac8694454f9 (diff)
downloadcoreclr-d6738b0c6c90efcd6da1a47f85e73378e7caf3b1.tar.gz
coreclr-d6738b0c6c90efcd6da1a47f85e73378e7caf3b1.tar.bz2
coreclr-d6738b0c6c90efcd6da1a47f85e73378e7caf3b1.zip
Fix ARM build break (Issue 2362).
Remove unnecessary __cdecl modifier.
-rw-r--r--tests/src/JIT/jit64/mcc/interop/native_i0c.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/src/JIT/jit64/mcc/interop/native_i0c.cpp b/tests/src/JIT/jit64/mcc/interop/native_i0c.cpp
index 1a4e183675..4c45023d68 100644
--- a/tests/src/JIT/jit64/mcc/interop/native_i0c.cpp
+++ b/tests/src/JIT/jit64/mcc/interop/native_i0c.cpp
@@ -5,7 +5,7 @@
#include "native.h"
-MCC_API VType0 __cdecl sum(unsigned __int64 first, ...) {
+MCC_API VType0 sum(unsigned __int64 first, ...) {
VType0 result;
int count = 0;