diff options
author | John Thompson <John.Thompson.JTSoftware@gmail.com> | 2009-11-05 22:03:02 +0000 |
---|---|---|
committer | John Thompson <John.Thompson.JTSoftware@gmail.com> | 2009-11-05 22:03:02 +0000 |
commit | 40d1bb6383c14d5f8249d0640e8088a91b694c66 (patch) | |
tree | fde4603f2cb3dccb9a6facf7fd8a05ce0e48bacc /lib/Basic/TargetInfo.cpp | |
parent | 9099e7bcda3922cee0cffcdf21332ac4aa193cea (diff) |
Eliminate tabls
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@86183 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Basic/TargetInfo.cpp')
-rw-r--r-- | lib/Basic/TargetInfo.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/Basic/TargetInfo.cpp b/lib/Basic/TargetInfo.cpp index 9ebacb240e..34d3fb2145 100644 --- a/lib/Basic/TargetInfo.cpp +++ b/lib/Basic/TargetInfo.cpp @@ -145,10 +145,10 @@ bool TargetInfo::isTypeSigned(IntType T) const { /// 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; - } + } } //===----------------------------------------------------------------------===// |