aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--backend/Inliningaux.ml5
1 files changed, 1 insertions, 4 deletions
diff --git a/backend/Inliningaux.ml b/backend/Inliningaux.ml
index 2e83eb0c..a2570da5 100644
--- a/backend/Inliningaux.ml
+++ b/backend/Inliningaux.ml
@@ -87,9 +87,6 @@ let static_called_once id io =
let should_inline (io: inlining_info) (id: ident) (f: coq_function) =
if !Clflags.option_finline then begin
- match C2C.atom_inline id with
- | C2C.Inline -> true
- | C2C.Noinline -> false
- | C2C.No_specifier -> static_called_once id io
+ true
end else
false