aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/codegen.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/codegen.cpp b/src/codegen.cpp
index 0cfd27322f..3aa8f63100 100644
--- a/src/codegen.cpp
+++ b/src/codegen.cpp
@@ -489,6 +489,10 @@ static LLVMValueRef fn_llvm_value(CodeGen *g, FnTableEntry *fn_table_entry) {
} else {
LLVMSetFunctionCallConv(fn_table_entry->llvm_value, get_llvm_cc(g, fn_type->data.fn.fn_type_id.cc));
}
+ if (fn_type->data.fn.fn_type_id.cc == CallingConventionAsync) {
+ addLLVMFnAttr(fn_table_entry->llvm_value, "optnone");
+ addLLVMFnAttr(fn_table_entry->llvm_value, "noinline");
+ }
bool want_cold = fn_table_entry->is_cold || fn_type->data.fn.fn_type_id.cc == CallingConventionCold;
if (want_cold) {