[libc-commits] [PATCH] D90800: [libc] Fix WrapperGen seeing no arguments as a void argument.

Siva Chandra via Phabricator via libc-commits libc-commits at lists.llvm.org
Thu Nov 5 10:38:27 PST 2020


sivachandra accepted this revision.
sivachandra added inline comments.


================
Comment at: libc/utils/tools/WrapperGen/Main.cpp:60
+            "Function '" + FunctionName +
+            "' has an argument of type 'void' and other arguments.");
+      }
----------------
Say something like, 

```
"The specification for function " + FunctionName + " lists other arguments along with a void argument."
```

Pointing out that the specification is at fault tells the user where to go look.


Repository:
  rG LLVM Github Monorepo

CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D90800/new/

https://reviews.llvm.org/D90800



More information about the libc-commits mailing list