From f47afd707eea1b95311aefbfa608c40f1da46844 Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Wed, 23 Sep 2009 05:39:46 +0000 Subject: [PATCH] return a bool value as a bool llvm-svn: 82613 --- clang/include/clang/Basic/TargetInfo.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/clang/include/clang/Basic/TargetInfo.h b/clang/include/clang/Basic/TargetInfo.h index 64692ba37ae1..1f61e3fccc2c 100644 --- a/clang/include/clang/Basic/TargetInfo.h +++ b/clang/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; }