diff options
| author | Alan Wu <XrXr@users.noreply.github.com> | 2023-09-14 18:40:45 -0400 |
|---|---|---|
| committer | Alan Wu <XrXr@users.noreply.github.com> | 2023-09-14 18:40:45 -0400 |
| commit | 0ba6c603bca195064c5530009d72dd42ad42d153 (patch) | |
| tree | d31008e116a1d3b53187825bfca994fb58a47620 | |
| parent | 07b615bb3b55d1ab6548d1abf77aa8bc25bbb3e1 (diff) | |
YJIT: Remove UTF-8 BOM [ci skip]
/yjit/src/backend/x86_64/mod.rs Is also UTF-8 and it doesn't have the
marker. The standard recommends against it, so remove it.
| -rw-r--r-- | yjit/src/codegen.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/yjit/src/codegen.rs b/yjit/src/codegen.rs index 3ae519bc81..dd4944b362 100644 --- a/yjit/src/codegen.rs +++ b/yjit/src/codegen.rs @@ -1,4 +1,4 @@ -// We use the YARV bytecode constants which have a CRuby-style name +// We use the YARV bytecode constants which have a CRuby-style name #![allow(non_upper_case_globals)] use crate::asm::*; |
