Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

WIP: Add @code_llvm macro #5779

Closed
wants to merge 1 commit into from
Closed

WIP: Add @code_llvm macro #5779

wants to merge 1 commit into from

Commits on Feb 12, 2014

  1. WIP: Add @code_llvm macro

    This allows you to do:
    ```julia
    In  [74]: @code_llvm 1 + 1
    
    define i64 @"julia_+672"(i64, i64) {
    top:
      %2 = add i64 %1, %0, !dbg !2075
      ret i64 %2, !dbg !2075
    }
    ```
    Reference issue: #5674
    
    I based this entirely after the implementation of `@which`, but it seems like it could be a bit cleaner. If we get some more thorough review here I can accordingly add the other code_ macros.
    quinnj committed Feb 12, 2014
    Configuration menu
    Copy the full SHA
    b2eaf49 View commit details
    Browse the repository at this point in the history