Removing an unused function; NFC

It turns out there are zero in-tree callers of CallExpr::getNumCommas()
so it's reasonable to remove.
This commit is contained in:
Aaron Ballman 2022-08-15 13:33:45 -04:00
parent a5bef98c75
commit f37b285299
1 changed files with 0 additions and 4 deletions

View File

@ -3061,10 +3061,6 @@ public:
PREARGS_START + getNumPreArgs() + getNumArgs());
}
/// getNumCommas - Return the number of commas that must have been present in
/// this function call.
unsigned getNumCommas() const { return getNumArgs() ? getNumArgs() - 1 : 0; }
/// Get FPOptionsOverride from trailing storage.
FPOptionsOverride getStoredFPFeatures() const {
assert(hasStoredFPFeatures());