/src/test/run-make-fulldeps/llvm-pass/plugin.rs

https://gitlab.com/jianglu/rust · Rust · 28 lines · 14 code · 5 blank · 9 comment · 0 complexity · 2878f2aad5e2f3208f34a08b1870ea6c MD5 · raw file

  1. // Copyright 2016 The Rust Project Developers. See the COPYRIGHT
  2. // file at the top-level directory of this distribution and at
  3. // http://rust-lang.org/COPYRIGHT.
  4. //
  5. // Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
  6. // http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
  7. // <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
  8. // option. This file may not be copied, modified, or distributed
  9. // except according to those terms.
  10. #![feature(plugin_registrar, rustc_private)]
  11. #![crate_type = "dylib"]
  12. #![crate_name = "some_plugin"]
  13. extern crate rustc;
  14. extern crate rustc_plugin;
  15. #[link(name = "llvm-function-pass", kind = "static")]
  16. #[link(name = "llvm-module-pass", kind = "static")]
  17. extern {}
  18. use rustc_plugin::registry::Registry;
  19. #[plugin_registrar]
  20. pub fn plugin_registrar(reg: &mut Registry) {
  21. reg.register_llvm_pass("some-llvm-function-pass");
  22. reg.register_llvm_pass("some-llvm-module-pass");
  23. }