Advertisement
Guest User

Untitled

a guest
Aug 21st, 2018
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.79 KB | None | 0 0
  1. double lit(double x) {
  2. return 0.0;
  3. }
  4. ->
  5. double lit_darg0(double x) {
  6. double _d_x = 1;
  7. return 0;
  8. }
  9. FunctionDecl 0x5632986fe280 <<invalid sloc>> <invalid sloc> lit_darg0 'double (double)'
  10. |-ParmVarDecl 0x5632986fe318 <<invalid sloc>> <invalid sloc> x 'double'
  11. `-CompoundStmt 0x5632986fe4e8 <<invalid sloc>>
  12. |-DeclStmt 0x5632986fe418 <<invalid sloc>>
  13. | `-VarDecl 0x5632986fe3a0 <<invalid sloc>> <invalid sloc> used _d_x 'double' cinit
  14. | `-ImplicitCastExpr 0x5632986fe400 <<invalid sloc>> 'double' <IntegralToFloating>
  15. | `-IntegerLiteral 0x5632986fe380 <<invalid sloc>> 'int' 1
  16. `-ReturnStmt 0x5632986fe4b0 <<invalid sloc>>
  17. `-ImplicitCastExpr 0x5632986fe498 <<invalid sloc>> 'double' <IntegralToFloating>
  18. `-IntegerLiteral 0x5632986fe458 <<invalid sloc>> 'int' 0
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement