1
0
mirror of https://github.com/c64scene-ar/llvm-6502.git synced 2025-03-02 07:30:52 +00:00
Reid Spencer cea6559f60 Implement the IsDigitOptimization for simplifying calls to the isdigit
library function:
  isdigit(chr) -> 0 or 1 if chr is constant
  isdigit(chr) -> chr - '0' <= 9 otherwise

Although there are many calls to isdigit in llvm-test, most of them are
compiled away by macros leaving only this:

2 MultiSource/Applications/hexxagon


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@21688 91177308-0d34-0410-b5e6-96231b3b80d8
2005-05-04 18:58:28 +00:00
..
2005-04-21 21:13:18 +00:00
2005-04-22 04:01:18 +00:00
2005-04-21 22:36:52 +00:00
2005-04-22 04:08:30 +00:00
2005-04-21 22:55:34 +00:00
2005-04-22 17:56:01 +00:00