digraph diagram { rankdir = LR; "C code" [shape=doublecircle]; "8cc" [shape=rect]; "elc" [shape=rect,color=red]; "ELVM IR" [shape=ellipse]; "Executable (target X)" [shape=ellipse]; "Executable (target Y)" [shape=ellipse]; "Executable (target Z)" [shape=ellipse]; "1" [shape=diamond,style=filled,label="",height=.1,width=.1]; "elc" -> "1" [dir=none]; "ELVM IR" -> "1" [dir=none]; "1" -> "Executable (target X)"; "1" -> "Executable (target Y)"; "1" -> "Executable (target Z)"; "2" [shape=diamond,style=filled,label="",height=.1,width=.1]; "8cc" -> "2" [dir=none]; "C code" -> "2" [dir=none]; "2" -> "ELVM IR"; }