llvm-ir 0.8.2

LLVM IR in natural Rust data structures
Documentation
1
2
3
4
5
6
7
8
9
10
11
struct output {
  double a0;
  double a1;
  double a2;
};

struct output run(float a) {
  struct output o;
  o.a0 = a;
  return o;
}