Normalize line endings of r163013 (part 2).

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@163032 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/test/Parser/MicrosoftExtensions.cpp b/test/Parser/MicrosoftExtensions.cpp
index d1e8866..fd38dca 100644
--- a/test/Parser/MicrosoftExtensions.cpp
+++ b/test/Parser/MicrosoftExtensions.cpp
@@ -171,27 +171,27 @@
    int k = typename var;// expected-error {{expected a qualified name after 'typename'}}
 }
 
-

-__interface MicrosoftInterface;

-__interface MicrosoftInterface {

-   void foo1() = 0;

-   virtual void foo2() = 0;

-};

-

-__interface MicrosoftDerivedInterface : public MicrosoftInterface {

-  void foo1();

-  void foo2() override;

-  void foo3();

-};

-

-void interface_test() {

-  MicrosoftInterface* a;

-  a->foo1();

-  MicrosoftDerivedInterface* b;

-  b->foo2();

-}

-

-__int64 x7 = __int64(0);

+
+__interface MicrosoftInterface;
+__interface MicrosoftInterface {
+   void foo1() = 0;
+   virtual void foo2() = 0;
+};
+
+__interface MicrosoftDerivedInterface : public MicrosoftInterface {
+  void foo1();
+  void foo2() override;
+  void foo3();
+};
+
+void interface_test() {
+  MicrosoftInterface* a;
+  a->foo1();
+  MicrosoftDerivedInterface* b;
+  b->foo2();
+}
+
+__int64 x7 = __int64(0);
 
 
 namespace If_exists_test {
@@ -238,29 +238,29 @@
 
 int __if_exists_init_list() {
 
-  int array1[] = {

-    0, 

-    __if_exists(IF_EXISTS::Type) {2, }

-    3

-  };

+  int array1[] = {
+    0, 
+    __if_exists(IF_EXISTS::Type) {2, }
+    3
+  };
 
-  int array2[] = {

-    0, 

-    __if_exists(IF_EXISTS::Type_not) { this wont compile }

-    3

-  };

-

-  int array3[] = {

-    0, 

-    __if_not_exists(IF_EXISTS::Type_not) {2, }

-    3

-  };

+  int array2[] = {
+    0, 
+    __if_exists(IF_EXISTS::Type_not) { this wont compile }
+    3
+  };
 
-  int array4[] = {

-    0, 

-    __if_not_exists(IF_EXISTS::Type) { this wont compile }

-    3

-  };

+  int array3[] = {
+    0, 
+    __if_not_exists(IF_EXISTS::Type_not) {2, }
+    3
+  };
+
+  int array4[] = {
+    0, 
+    __if_not_exists(IF_EXISTS::Type) { this wont compile }
+    3
+  };
 
 }