Add svn:eol-style=native to some files
Correct two files with inconsistent lines endings.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@64564 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/test/SemaCXX/class-names.cpp b/test/SemaCXX/class-names.cpp
index 8b01c89..1166b10 100644
--- a/test/SemaCXX/class-names.cpp
+++ b/test/SemaCXX/class-names.cpp
@@ -1,52 +1,52 @@
-// RUN: clang -fsyntax-only -verify %s

-class C { };

-

-C c;

-

-void D(int);

-

-class D {}; // expected-note {{previous use is here}}

-

-void foo()

-{

-  D(5);

-  class D d;

-}

-

-class D; 

-

-enum D; // expected-error {{use of 'D' with tag type that does not match previous declaration}}

-

-class A * A;

-

-class A * a2;

-

-void bar()

-{

-  A = 0;

-}

-

-void C(int);

-

-void bar2()

-{

-  C(17);

-}

-

-extern int B;

-class B;

-class B {};

-int B;

-

-enum E { e1_val };

-E e1;

-

-void E(int);

-

-void bar3() {

-  E(17);

-}

-

-enum E e2;

-

-enum E2 { E2 };

+// RUN: clang -fsyntax-only -verify %s
+class C { };
+
+C c;
+
+void D(int);
+
+class D {}; // expected-note {{previous use is here}}
+
+void foo()
+{
+  D(5);
+  class D d;
+}
+
+class D; 
+
+enum D; // expected-error {{use of 'D' with tag type that does not match previous declaration}}
+
+class A * A;
+
+class A * a2;
+
+void bar()
+{
+  A = 0;
+}
+
+void C(int);
+
+void bar2()
+{
+  C(17);
+}
+
+extern int B;
+class B;
+class B {};
+int B;
+
+enum E { e1_val };
+E e1;
+
+void E(int);
+
+void bar3() {
+  E(17);
+}
+
+enum E e2;
+
+enum E2 { E2 };
diff --git a/test/SemaCXX/do-while-scope.cpp b/test/SemaCXX/do-while-scope.cpp
index 94a3116..8adaade 100644
--- a/test/SemaCXX/do-while-scope.cpp
+++ b/test/SemaCXX/do-while-scope.cpp
@@ -1,8 +1,8 @@
 // RUN: clang -fsyntax-only -verify %s 
 
 void test() {
-  int x;

-  do

-    int x;

-  while (1);

+  int x;
+  do
+    int x;
+  while (1);
 }
diff --git a/test/SemaCXX/function-type-qual.cpp b/test/SemaCXX/function-type-qual.cpp
index b5487a9..dd3e550 100644
--- a/test/SemaCXX/function-type-qual.cpp
+++ b/test/SemaCXX/function-type-qual.cpp
@@ -1,23 +1,23 @@
-// RUN: clang -fsyntax-only -verify %s

-

-void f() const; // expected-error {{type qualifier is not allowed on this function}}

-

-typedef void cfn() const; 

-cfn f2; // expected-error {{a qualified function type cannot be used to declare a nonmember function or a static member function}}

-

-class C {

-  void f() const;

-  cfn f2;

-  static void f3() const; // expected-error {{type qualifier is not allowed on this function}}

-  static cfn f4; // expected-error {{a qualified function type cannot be used to declare a nonmember function or a static member function}}

-

-  void m1() {

-    x = 0;

-  }

-

-  void m2() const {

-    x = 0; // expected-error {{read-only variable is not assignable}}

-  }

-

-  int x;

-};

+// RUN: clang -fsyntax-only -verify %s
+
+void f() const; // expected-error {{type qualifier is not allowed on this function}}
+
+typedef void cfn() const; 
+cfn f2; // expected-error {{a qualified function type cannot be used to declare a nonmember function or a static member function}}
+
+class C {
+  void f() const;
+  cfn f2;
+  static void f3() const; // expected-error {{type qualifier is not allowed on this function}}
+  static cfn f4; // expected-error {{a qualified function type cannot be used to declare a nonmember function or a static member function}}
+
+  void m1() {
+    x = 0;
+  }
+
+  void m2() const {
+    x = 0; // expected-error {{read-only variable is not assignable}}
+  }
+
+  int x;
+};
diff --git a/test/SemaCXX/inherit.cpp b/test/SemaCXX/inherit.cpp
index 8ccecdd..cca1f8d 100644
--- a/test/SemaCXX/inherit.cpp
+++ b/test/SemaCXX/inherit.cpp
@@ -1,32 +1,32 @@
-// RUN: clang -fsyntax-only -verify %s

-class A { };

-

-class B1 : A { };

-

-class B2 : virtual A { };

-

-class B3 : virtual virtual A { }; // expected-error{{duplicate 'virtual' in base specifier}}

-

-class C : public B1, private B2 { };

-

-

-class D;

-

-class E : public D { }; // expected-error{{base class has incomplete type}}

-

-typedef int I;

-

-class F : public I { }; // expected-error{{base specifier must name a class}}

-

-union U1 : public A { }; // expected-error{{unions cannot have base classes}}

-

-union U2 {};

-

-class G : public U2 { }; // expected-error{{unions cannot be base classes}}

-

-typedef G G_copy;

-typedef G G_copy_2;

-typedef G_copy G_copy_3;

-

-class H : G_copy, A, G_copy_2, // expected-error{{base class 'G_copy' specified more than once as a direct base class}}

-          public G_copy_3 { }; // expected-error{{base class 'G_copy' specified more than once as a direct base class}}

+// RUN: clang -fsyntax-only -verify %s
+class A { };
+
+class B1 : A { };
+
+class B2 : virtual A { };
+
+class B3 : virtual virtual A { }; // expected-error{{duplicate 'virtual' in base specifier}}
+
+class C : public B1, private B2 { };
+
+
+class D;
+
+class E : public D { }; // expected-error{{base class has incomplete type}}
+
+typedef int I;
+
+class F : public I { }; // expected-error{{base specifier must name a class}}
+
+union U1 : public A { }; // expected-error{{unions cannot have base classes}}
+
+union U2 {};
+
+class G : public U2 { }; // expected-error{{unions cannot be base classes}}
+
+typedef G G_copy;
+typedef G G_copy_2;
+typedef G_copy G_copy_3;
+
+class H : G_copy, A, G_copy_2, // expected-error{{base class 'G_copy' specified more than once as a direct base class}}
+          public G_copy_3 { }; // expected-error{{base class 'G_copy' specified more than once as a direct base class}}