Eliminate tabls

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@86183 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/lib/Basic/TargetInfo.cpp b/lib/Basic/TargetInfo.cpp
index 9ebacb2..34d3fb2 100644
--- a/lib/Basic/TargetInfo.cpp
+++ b/lib/Basic/TargetInfo.cpp
@@ -145,10 +145,10 @@
 /// Apply changes to the target information with respect to certain
 /// language options which change the target configuration.
 void TargetInfo::setForcedLangOptions(LangOptions &Opts) {
-	if (Opts.ShortWChar) {
+  if (Opts.ShortWChar) {
     WCharType = UnsignedShort;
     WCharWidth = WCharAlign = 16;
-	}
+  }
 }
 
 //===----------------------------------------------------------------------===//