diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..da8bc30 --- /dev/null +++ b/.gitignore @@ -0,0 +1,3 @@ +*.o +*.s +main diff --git a/README.md b/README.md new file mode 100644 index 0000000..4f1962b --- /dev/null +++ b/README.md @@ -0,0 +1,8 @@ +This program, compiled with clang 12+, should work. +However, it is using an undefined behaviour in the `isEven.cpp` file. + +``` +make run +``` + +Originates from https://twitter.com/jckarter/status/1428072308351016969 diff --git a/isEven.cpp b/isEven.cpp new file mode 100644 index 0000000..dffebe0 --- /dev/null +++ b/isEven.cpp @@ -0,0 +1,19 @@ +#include "isEven.h" + +bool isEven(int x) { + switch (x) { + case 0: + return true; + case 1: + return false; + case 2: + return true; + case 3: + return false; + + // Why defininfg more cases when the compiler can do it ? + + default: + return isEven(x); + } +} diff --git a/isEven.h b/isEven.h new file mode 100644 index 0000000..fbf3dc0 --- /dev/null +++ b/isEven.h @@ -0,0 +1 @@ +bool isEven(int); diff --git a/main.cpp b/main.cpp new file mode 100644 index 0000000..c5770cf --- /dev/null +++ b/main.cpp @@ -0,0 +1,17 @@ +#include "isEven.h" +#include + +int main() { + int x; + while (true) { + std::cout << "BENOIT< Is this number even ? "; + std::cin >> x; + + if (isEven(x)) { + std::cout << "BENOIT> True\n\n"; + } else { + std::cout << "BENOIT> False\n\n"; + } + } + return 0; +} diff --git a/makefile b/makefile new file mode 100644 index 0000000..f900241 --- /dev/null +++ b/makefile @@ -0,0 +1,25 @@ +CFLAGS=-O3 + +all: main + +main: isEven.o main.o + @clang++ main.o isEven.o -lstdc++ --output main ${CFLAGS} + +.PHONY: build-assembly +build-assembly: + @clang++ lolilol.cpp -S -masm=intel ${CFLAGS} + +.PHONY: run +run: main + ./main + + +main.o: isEven.h + + +%.o: %.cpp + @clang++ -o $@ -c $< ${CFLAGS} + +.PHONY: clean +clean: + @rm -rf *.s *.o main