Eliminate tabs and trailing spaces

llvm-svn: 21479
diff --git a/llvm/test/Regression/C++Frontend/2003-09-22-CompositeExprValue.cpp b/llvm/test/Regression/C++Frontend/2003-09-22-CompositeExprValue.cpp
index b1373ba..a8208ad 100644
--- a/llvm/test/Regression/C++Frontend/2003-09-22-CompositeExprValue.cpp
+++ b/llvm/test/Regression/C++Frontend/2003-09-22-CompositeExprValue.cpp
@@ -2,10 +2,10 @@
 
 struct duration {
  duration operator/=(int c) {
-	return *this;
+  return *this;
   }
 };
 
 void a000090() {
-	duration() /= 1;
+  duration() /= 1;
 }