diff options
author | reed@google.com <reed@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81> | 2011-06-02 13:45:33 +0000 |
---|---|---|
committer | reed@google.com <reed@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81> | 2011-06-02 13:45:33 +0000 |
commit | 542e035dcd57df414fddd43d195e5d35adefbbd0 (patch) | |
tree | 53185a107d682531e942d0b8a504041674d3606e /include | |
parent | 907afcadfaa5c0a7771ba35118fe71d724698ec2 (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')
-rw-r--r-- | include/core/SkMath.h | 2 |
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 |