llvm-ir 0.8.2

LLVM IR in natural Rust data structures
Documentation
1
2
3
4
5
6
7
8
9
10
11
; This file written directly as .ll, mostly for the purpose of testing
; fence instructions and associated `MemoryOrdering`s

define void @fences() {
  fence seq_cst
  fence acquire
  fence release
  fence acq_rel
  fence syncscope("singlethread") seq_cst
  ret void
}