[lldb] Re-enable TestCCallingConventions on Apple Silicon

This test was disabled because clang struggled to emit a Windows calling
convention when targeting an Apple environment. This test is now showing
up as an XPASS so someone must have fixed this.

GitOrigin-RevId: c988c267cf6e302ceda1edc5c7c679ecb64eab75
diff --git a/test/API/lang/c/calling-conventions/TestCCallingConventions.py b/test/API/lang/c/calling-conventions/TestCCallingConventions.py
index a93cba9..f7a5e46 100644
--- a/test/API/lang/c/calling-conventions/TestCCallingConventions.py
+++ b/test/API/lang/c/calling-conventions/TestCCallingConventions.py
@@ -47,7 +47,6 @@
         self.expect_expr("func(1, 2, 3, 4)", result_type="int", result_value="10")
 
     @skipIf(compiler="clang", compiler_version=['<', '9.0'])
-    @expectedFailureDarwin(archs=["arm64", "arm64e"]) # rdar://84528755
     def test_ms_abi(self):
         if not self.build_and_run("ms_abi.c"):
             return