您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

30 行
1.4KB

  1. /* d-tree.def -- Definitions and documentation for additional tree codes used
  2. in the D compiler (see tree.def for standard codes).
  3. Copyright (C) 2006-2020 Free Software Foundation, Inc.
  4. GCC is free software; you can redistribute it and/or modify
  5. it under the terms of the GNU General Public License as published by
  6. the Free Software Foundation; either version 3, or (at your option)
  7. any later version.
  8. GCC is distributed in the hope that it will be useful,
  9. but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  11. GNU General Public License for more details.
  12. You should have received a copy of the GNU General Public License
  13. along with GCC; see the file COPYING3. If not see
  14. <http://www.gnu.org/licenses/>. */
  15. /* Logical shift done on an unsigned type. If the first operand is
  16. signed, it will be converted to the unsigned equivalent. The second
  17. operand is the number of bits to shift by; it need not be the same
  18. type as the first operand and result. */
  19. DEFTREECODE (UNSIGNED_RSHIFT_EXPR, "unsigned_rshift_expr", tcc_binary, 2)
  20. /* Floating point modulus that expands to a call to fmod. */
  21. DEFTREECODE (FLOAT_MOD_EXPR, "float_mod_expr", tcc_binary, 2)
  22. /* Used to represent information associated with a function closure. */
  23. DEFTREECODE (FUNCFRAME_INFO, "funcframe_info", tcc_exceptional, 0)