[cfe-commits] r82613 - /cfe/trunk/include/clang/Basic/TargetInfo.h
Chris Lattner
sabre at nondot.org
Tue Sep 22 22:39:46 PDT 2009
Author: lattner
Date: Wed Sep 23 00:39:46 2009
New Revision: 82613
URL: http://llvm.org/viewvc/llvm-project?rev=82613&view=rev
Log:
return a bool value as a bool
Modified:
cfe/trunk/include/clang/Basic/TargetInfo.h
Modified: cfe/trunk/include/clang/Basic/TargetInfo.h
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/include/clang/Basic/TargetInfo.h?rev=82613&r1=82612&r2=82613&view=diff
==============================================================================
--- cfe/trunk/include/clang/Basic/TargetInfo.h (original)
+++ cfe/trunk/include/clang/Basic/TargetInfo.h Wed Sep 23 00:39:46 2009
@@ -385,7 +385,7 @@
}
// isTLSSupported - Whether the target supports thread-local storage
- unsigned isTLSSupported() const {
+ bool isTLSSupported() const {
return TLSSupported;
}
More information about the cfe-commits
mailing list