We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
negative
1 parent a169a95 commit 7c959dbCopy full SHA for 7c959db
lib/AST/ASTDumper.cpp
@@ -1829,6 +1829,8 @@ class PrintExpr : public ExprVisitor<PrintExpr> {
1829
}
1830
void visitFloatLiteralExpr(FloatLiteralExpr *E) {
1831
printCommon(E, "float_literal_expr");
1832
+ if (E->isNegative())
1833
+ PrintWithColorRAII(OS, LiteralValueColor) << " negative";
1834
PrintWithColorRAII(OS, LiteralValueColor)
1835
<< " value=" << E->getDigitsText();
1836
PrintWithColorRAII(OS, LiteralValueColor) << " builtin_initializer=";
0 commit comments