Macro target_lexicon::triple [] [src]

macro_rules! triple {
    ($str: tt) => { ... };
}

A convenient syntax for triple "literals".

This currently expands to code that just calls Triple::from_str and does an expect, though in the future it would be cool to use procedural macros or so to report errors at compile time instead.