Remove trailing whitespace


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@21427 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/test/C++Frontend/2003-08-28-ForwardType.cpp b/test/C++Frontend/2003-08-28-ForwardType.cpp
index 72f4bc0..4932295 100644
--- a/test/C++Frontend/2003-08-28-ForwardType.cpp
+++ b/test/C++Frontend/2003-08-28-ForwardType.cpp
@@ -5,9 +5,9 @@
 
 
 template<typename _CharT>
-struct stdio_filebuf 
+struct stdio_filebuf
 {  stdio_filebuf();
-  
+
 };
 
 extern stdio_filebuf<char> buf_cout;
diff --git a/test/C++Frontend/2003-08-28-SaveExprBug.cpp b/test/C++Frontend/2003-08-28-SaveExprBug.cpp
index 594ccd4..2be35d8 100644
--- a/test/C++Frontend/2003-08-28-SaveExprBug.cpp
+++ b/test/C++Frontend/2003-08-28-SaveExprBug.cpp
@@ -6,7 +6,7 @@
 template<typename foo>
 struct basic_filebuf {
   char *instancevar;
- 
+
   void callee() {
     instancevar += eback() != eback();
   }
diff --git a/test/C++Frontend/2003-08-31-StructLayout.cpp b/test/C++Frontend/2003-08-31-StructLayout.cpp
index 21d504c..99d6682 100644
--- a/test/C++Frontend/2003-08-31-StructLayout.cpp
+++ b/test/C++Frontend/2003-08-31-StructLayout.cpp
@@ -1,6 +1,6 @@
 // RUN: %llvmgxx -S %s -o - | llvm-as -f -o /dev/null
 
-// There is a HOLE in the derived2 object due to not wanting to place the two 
+// There is a HOLE in the derived2 object due to not wanting to place the two
 // baseclass instances at the same offset!
 
 struct baseclass {};
diff --git a/test/C++Frontend/2003-09-30-NestedFunctionDecl.cpp b/test/C++Frontend/2003-09-30-NestedFunctionDecl.cpp
index ed7c871..b1c54b8 100644
--- a/test/C++Frontend/2003-09-30-NestedFunctionDecl.cpp
+++ b/test/C++Frontend/2003-09-30-NestedFunctionDecl.cpp
@@ -1,12 +1,12 @@
 // RUN: %llvmgxx -S %s -o - | llvm-as -f -o /dev/null
 
-// The C++ front-end thinks the two foo's are different, the LLVM emitter 
+// The C++ front-end thinks the two foo's are different, the LLVM emitter
 // thinks they are the same.  The disconnect causes problems.
 
 void foo() { }
 
 void bar() {
   void foo();
- 
+
   foo();
 }
diff --git a/test/C++Frontend/2003-10-27-VirtualBaseClassCrash.cpp b/test/C++Frontend/2003-10-27-VirtualBaseClassCrash.cpp
index 19cb0cc..f9fc80e 100644
--- a/test/C++Frontend/2003-10-27-VirtualBaseClassCrash.cpp
+++ b/test/C++Frontend/2003-10-27-VirtualBaseClassCrash.cpp
@@ -7,7 +7,7 @@
   void foo();
 };
 
-template <class T> 
+template <class T>
 struct test : virtual super<int> {};
 
 extern test<int> X;
diff --git a/test/C++Frontend/2003-11-04-ArrayConstructors.cpp b/test/C++Frontend/2003-11-04-ArrayConstructors.cpp
index 8c7c0bf..4df4f9b 100644
--- a/test/C++Frontend/2003-11-04-ArrayConstructors.cpp
+++ b/test/C++Frontend/2003-11-04-ArrayConstructors.cpp
@@ -1,8 +1,8 @@
 // RUN: %llvmgxx -S %s -o - | llvm-as -f -o /dev/null
 
 
-struct Foo { 
-  Foo(int); 
+struct Foo {
+  Foo(int);
   ~Foo();
 };
 void foo() {
diff --git a/test/C++Frontend/2004-03-15-CleanupsAndGotos.cpp b/test/C++Frontend/2004-03-15-CleanupsAndGotos.cpp
index be14b7f..9bc70c8 100644
--- a/test/C++Frontend/2004-03-15-CleanupsAndGotos.cpp
+++ b/test/C++Frontend/2004-03-15-CleanupsAndGotos.cpp
@@ -8,7 +8,7 @@
 
 void foo() {
   X v;
-  
-TryAgain: 
+
+TryAgain:
   goto TryAgain;
 }
diff --git a/test/C++Frontend/2004-06-08-LateTemplateInstantiation.cpp b/test/C++Frontend/2004-06-08-LateTemplateInstantiation.cpp
index 4d31c36..16d8e5e 100644
--- a/test/C++Frontend/2004-06-08-LateTemplateInstantiation.cpp
+++ b/test/C++Frontend/2004-06-08-LateTemplateInstantiation.cpp
@@ -3,7 +3,7 @@
 
 
 template<typename Ty>
-struct normal_iterator {  
+struct normal_iterator {
   int FIELD;
 };
 
diff --git a/test/C++Frontend/2005-02-19-UnnamedVirtualThunkArgument.cpp b/test/C++Frontend/2005-02-19-UnnamedVirtualThunkArgument.cpp
index e22f30f..853fee7 100644
--- a/test/C++Frontend/2005-02-19-UnnamedVirtualThunkArgument.cpp
+++ b/test/C++Frontend/2005-02-19-UnnamedVirtualThunkArgument.cpp
@@ -1,22 +1,22 @@
 // RUN: %llvmgxx -S %s -o /dev/null
 
-struct Foo  {  
-    Foo();  
-    virtual ~Foo();  
-};  
-  
-struct Bar  {  
-    Bar();  
-    virtual ~Bar();  
-    virtual bool test(bool) const;  
-};  
-  
-struct Baz : public Foo, public Bar  {  
-    Baz();  
-    virtual ~Baz();  
-    virtual bool test(bool) const;  
-};  
-  
-bool Baz::test(bool) const  {  
-    return true;  
-}  
+struct Foo  {
+    Foo();
+    virtual ~Foo();
+};
+
+struct Bar  {
+    Bar();
+    virtual ~Bar();
+    virtual bool test(bool) const;
+};
+
+struct Baz : public Foo, public Bar  {
+    Baz();
+    virtual ~Baz();
+    virtual bool test(bool) const;
+};
+
+bool Baz::test(bool) const  {
+    return true;
+}
diff --git a/test/C++Frontend/2005-02-20-BrokenReferenceTest.cpp b/test/C++Frontend/2005-02-20-BrokenReferenceTest.cpp
index af15f81..31026d3 100644
--- a/test/C++Frontend/2005-02-20-BrokenReferenceTest.cpp
+++ b/test/C++Frontend/2005-02-20-BrokenReferenceTest.cpp
@@ -3,7 +3,7 @@
 void test(unsigned char *b, int rb) {
   typedef unsigned char imgfoo[10][rb];
   imgfoo &br = *(imgfoo *)b;
-  
+
   br[0][0] = 1;
 
   rb = br[0][0];