Code Monkey home page Code Monkey logo

Comments (4)

KarolS avatar KarolS commented on May 11, 2024 1

I'll close it when I make the error message nicer. Right now the compiler simply throws an exception and immediately exits. It is ugly. I want it to report the error, point to the correct line and continue compiling to search for more errors.

from millfork.

KarolS avatar KarolS commented on May 11, 2024

Yes, this is the expected behaviour.

The type of the left side doesn't matter. The type check goes as follows:

  • 246 fits in a byte, therefore it's a byte
  • 18 fits in a byte, therefore it's a byte
  • + has two bytes on its sides, therefore the result of 246+18 is a byte
  • the constant evaluator sees the overflow and informs you that something is wrong

You can get the same issue in C/C++, but the compiler won't warn you. For example, most 32- and 64-bit compilers will compile the following without any warning:

long long sum = 0x8000'0000u + 0x8000'0000u;

to long long sum = 0;, even thought 0x1'0000'0000u would fit in a long long just fine.

The difference is that Millfork does this at every integer size (there are no privileged "default" integer types like int in C) and doesn't let obvious overflows compile.

from millfork.

bocianu avatar bocianu commented on May 11, 2024

Ok! thanks. So you can close this issue.

from millfork.

KarolS avatar KarolS commented on May 11, 2024

Error reporting has been improved as of 0.3.12, closing.

from millfork.

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.