AaronBallman wrote:

> Builtins.td:3868:7: error: Unknown Type: mode_t
> ```let Prototype = "mode_t(mode_t)";```

Today I learned that even if the signature is ignored, it still needs to be 
valid. Let's use comments for the prototype instead:
```
let Prototype = ""; // mode_t(mode_t); mode_t is target-specific
```

https://github.com/llvm/llvm-project/pull/198130
_______________________________________________
cfe-commits mailing list
[email protected]
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

Reply via email to