aaron.ballman accepted this revision.
aaron.ballman added a comment.
This revision is now accepted and ready to land.

LGTM with a suggestion.



================
Comment at: clang/lib/AST/Interp/ByteCodeExprGen.cpp:1076-1081
+  case PT_Float: {
+    const auto &Sem = Ctx.getASTContext().getFloatTypeSemantics(E->getType());
+
+    APFloat Val(Sem);
+    return this->emitConstFloat(Val, E);
+  }
----------------
Desperately needs reformatting, but can do this in a one-liner that's actually 
a bit more clear.


Repository:
  rG LLVM Github Monorepo

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

https://reviews.llvm.org/D146788

_______________________________________________
cfe-commits mailing list
cfe-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

Reply via email to