Clang had decided to give me a error. It has decided to yell at me for using __rdtscp (This isn't my code, I have no Idea what that is)
error: use of undeclared identifier '__rdtscp'
i2 = __rdtscp(&ui2);
^
error: use of undeclared identifier '__rdtscp'
i3 = __rdtscp(&ui3);
^
error: use of undeclared identifier '__rdtscp'
i2 = __rdtscp(&ui2);
^
error: use of undeclared identifier '__rdtscp'
i3 = __rdtscp(&ui3);
^
error: use of undeclared identifier '__rdtscp'
i2 = __rdtscp(&ui2);
^
error: use of undeclared identifier '__rdtscp'
i3 = __rdtscp(&ui3);
I really would like figure out why Clang doesn't like me. Does anyone know what __rdtscp is and how I can get clang to calm down about it?