/src/wrappers/llvm/library/llvm_pass_manager.e

http://github.com/tybor/Liberty · Specman e · 33 lines · 11 code · 5 blank · 17 comment · 0 complexity · aa00251c10065bcdbd666a52350e2148 MD5 · raw file

  1. class LLVM_PASS_MANAGER
  2. inherit
  3. C_STRUCT
  4. -- ANY_MEMORY_HANDLING_CLASS
  5. insert CORE_EXTERNALS
  6. create {ANY} from_external_pointer
  7. feature {ANY}
  8. struct_size: like size_t
  9. do
  10. not_yet_implemented
  11. end
  12. end -- class LLVM_PASS_MANAGER
  13. -- Copyright (C) 2010-2017: Paolo Redaelli
  14. --
  15. -- This library is free software; you can redistribute it and/or
  16. -- modify it under the terms of the GNU Lesser General Public License
  17. -- as published by the Free Software Foundation; either version 2.1 of
  18. -- the License, or (at your option) any later version.
  19. --
  20. -- This library is distributed in the hope that it will be useful, but
  21. -- WITHOUT ANY WARRANTY; without even the implied warranty of
  22. -- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  23. -- Lesser General Public License for more details.
  24. --
  25. -- You should have received a copy of the GNU Lesser General Public
  26. -- License along with this library; if not, write to the Free Software
  27. -- Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
  28. -- 02110-1301 USA