feat: add UB-oriented isEven program
This commit is contained in:
parent
3dc4fe511e
commit
d1f14cd96c
3
.gitignore
vendored
Normal file
3
.gitignore
vendored
Normal file
@ -0,0 +1,3 @@
|
||||
*.o
|
||||
*.s
|
||||
main
|
8
README.md
Normal file
8
README.md
Normal 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
19
isEven.cpp
Normal 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);
|
||||
}
|
||||
}
|
17
main.cpp
Normal file
17
main.cpp
Normal 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
25
makefile
Normal 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
|
Loading…
Reference in New Issue
Block a user