Skip to content

Commit 161c4ac

Browse files
authored
format llvm.rs
1 parent d45215a commit 161c4ac

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

src/target/llvm.rs

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,13 @@ impl TargetInfo<'_> {
9595
env => env,
9696
};
9797
let abi = match self.abi {
98-
"sim" => if env != "simulator" { "simulator" } else { "" },
98+
"sim" => {
99+
if env != "simulator" {
100+
"simulator"
101+
} else {
102+
""
103+
}
104+
}
99105
"llvm" | "softfloat" | "uwp" | "vec-extabi" => "",
100106
"ilp32" => "_ilp32",
101107
"abi64" => "",

0 commit comments

Comments
 (0)