summaryrefslogtreecommitdiff
path: root/src/ir/function.rs
diff options
context:
space:
mode:
authorJustin W Smith <103147162+justsmth@users.noreply.github.com>2022-09-09 08:49:01 -0400
committerGitHub <noreply@github.com>2022-09-09 08:49:01 -0400
commita8f2634cf6bdc9c20368b4edf3ed46acc68adf3d (patch)
tree0a49e774df6b5deed35a95b0c2ae73874afe3c3c /src/ir/function.rs
parent3c8d6e9c2cdffda944d7f7e7b17fd1abc2cceca4 (diff)
parent9677e412c49e303e078e37ee30105cc635bb0ff8 (diff)
Merge branch 'rust-lang:master' into generated_name_override
Diffstat (limited to 'src/ir/function.rs')
-rw-r--r--src/ir/function.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ir/function.rs b/src/ir/function.rs
index 288c049b..89905351 100644
--- a/src/ir/function.rs
+++ b/src/ir/function.rs
@@ -19,7 +19,7 @@ use std::io;
const RUST_DERIVE_FUNPTR_LIMIT: usize = 12;
/// What kind of a function are we looking at?
-#[derive(Debug, Copy, Clone, PartialEq)]
+#[derive(Debug, Copy, Clone, PartialEq, Eq)]
pub enum FunctionKind {
/// A plain, free function.
Function,