aboutsummaryrefslogtreecommitdiffhomepage
path: root/include/core/SkMath.h
diff options
context:
space:
mode:
authorGravatar reed@google.com <reed@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81>2011-06-02 13:45:33 +0000
committerGravatar reed@google.com <reed@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81>2011-06-02 13:45:33 +0000
commit542e035dcd57df414fddd43d195e5d35adefbbd0 (patch)
tree53185a107d682531e942d0b8a504041674d3606e /include/core/SkMath.h
parent907afcadfaa5c0a7771ba35118fe71d724698ec2 (diff)
remove unneeded check for thumb. see http://codereview.appspot.com/4539048/
git-svn-id: http://skia.googlecode.com/svn/trunk@1477 2bbb7eff-a529-9590-31e7-b0007b416f81
Diffstat (limited to 'include/core/SkMath.h')
-rw-r--r--include/core/SkMath.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/core/SkMath.h b/include/core/SkMath.h
index 3e729042e3..efe378a733 100644
--- a/include/core/SkMath.h
+++ b/include/core/SkMath.h
@@ -115,7 +115,7 @@ static inline unsigned SkClampUMax(unsigned value, unsigned max) {
///////////////////////////////////////////////////////////////////////////////
-#if defined(__arm__) && !defined(__thumb__)
+#if defined(__arm__)
#define SkCLZ(x) __builtin_clz(x)
#endif