GithubHelp home page GithubHelp logo

Comments (3)

can1357 avatar can1357 commented on May 23, 2024

Because it should have been ?? What is the expected answer?

from vtil-core.

can1357 avatar can1357 commented on May 23, 2024

Few things, if you meant a 32-bit integer, you need to do 32 and not 4. As for the dst2.simplify().to_string().c_str(), simplification is done automatically when you do an operation and std::string can be passed as is to logger so you could just do dst2.to_string().

expression op1 = { {"op1"}, 32 };
expression op2 = { {"op2"}, 32 };

// Out:  (op1==op2)
//       ?
auto dst1 = op1 == op2;
log( "%s\n", dst1.to_string() );
log( "%s\n", dst1.value.to_string() );

// Out:  ((op1-op2)==0x0)
//       ?
auto dst2 = ( op1 - op2 ) == 0;
log( "%s\n", dst2.to_string() );
log( "%s\n", dst2.value.to_string() );

Also if you are not using this equality comparison in a statement, I'd recommend using expression::equals / expression::is_identical instead.

from vtil-core.

Mahorori avatar Mahorori commented on May 23, 2024

yes the result should've been unknown I think.
and It's been fixed, thank you for the quick fix and even advice for improving my code :)
and indeed i'm using it as statement to check if it's symbolized or not

from vtil-core.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.