================
@@ -287,6 +287,11 @@ def err_function_needs_feature : Error<
   "always_inline function %1 requires target feature '%2', but would "
   "be inlined into function %0 that is compiled without support for '%2'">;
 
+def err_flatten_function_needs_feature
+    : Error<"flatten function %0 calls %1 which requires target feature '%2', "
+            "but the "
+            "caller is compiled without support for '%2'">;
----------------
AaronBallman wrote:

```suggestion
def err_flatten_function_needs_feature : Error<
  "flatten function %0 calls %1 which requires target feature '%2', but the "
  "caller is compiled without support for '%2'">;
```

https://github.com/llvm/llvm-project/pull/154801
_______________________________________________
cfe-commits mailing list
cfe-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

Reply via email to