commit | 6a3bc6df36848188e9d0c1d978170c2b0918c6a3 | [log] [tgz] |
---|---|---|
author | Chris Lattner <sabre@nondot.org> | Wed Sep 23 05:39:46 2009 +0000 |
committer | Chris Lattner <sabre@nondot.org> | Wed Sep 23 05:39:46 2009 +0000 |
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
diff --git a/include/clang/Basic/TargetInfo.h b/include/clang/Basic/TargetInfo.h index 64692ba..1f61e3f 100644 --- a/include/clang/Basic/TargetInfo.h +++ b/include/clang/Basic/TargetInfo.h
@@ -385,7 +385,7 @@ } // isTLSSupported - Whether the target supports thread-local storage - unsigned isTLSSupported() const { + bool isTLSSupported() const { return TLSSupported; }