feat: add UB-oriented isEven program

This commit is contained in:
koalp 2021-08-19 16:58:41 +02:00
parent 3dc4fe511e
commit d1f14cd96c
Signed by: koalp
GPG Key ID: 35B21047DEB09A81
6 changed files with 73 additions and 0 deletions

3
.gitignore vendored Normal file
View File

@ -0,0 +1,3 @@
*.o
*.s
main

8
README.md Normal file
View File

@ -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

19
isEven.cpp Normal file
View File

@ -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);
}
}

1
isEven.h Normal file
View File

@ -0,0 +1 @@
bool isEven(int);

17
main.cpp Normal file
View File

@ -0,0 +1,17 @@
#include "isEven.h"
#include <iostream>
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;
}

25
makefile Normal file
View File

@ -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