diff options
author | Chris Lattner <sabre@nondot.org> | 2009-09-23 05:39:46 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2009-09-23 05:39:46 +0000 |
commit | 6a3bc6df36848188e9d0c1d978170c2b0918c6a3 (patch) | |
tree | 21e4cc366620836263933d7a1be863289b8ecf93 | |
parent | 569c1f4a6c703eaa8b963bed7d5c2fd5d4569e93 (diff) |
return a bool value as a bool
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@82613 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | include/clang/Basic/TargetInfo.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/clang/Basic/TargetInfo.h b/include/clang/Basic/TargetInfo.h index 64692ba37a..1f61e3fccc 100644 --- a/include/clang/Basic/TargetInfo.h +++ b/include/clang/Basic/TargetInfo.h @@ -385,7 +385,7 @@ public: } // isTLSSupported - Whether the target supports thread-local storage - unsigned isTLSSupported() const { + bool isTLSSupported() const { return TLSSupported; } |