We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Test code
; bin/clang -pg test.c && ./a.out && gprof -b a.out gmon.out int fib(int n) {return n <=1 ? 1 : fib(n-1) + fib(n-2); } int main() {fib(10); return 0;}
Known workable platforms
X86-64 X86-32 MIPS32 MIPS64 SPARC64 PowerPC64LE
Known unworkable platforms
AARCH64 https://github.com/llvm/llvm-project/pull/121107 LoongArch64 https://github.com/llvm/llvm-project/pull/121107 RISC-V64 https://github.com/llvm/llvm-project/pull/121107 ARM32: https://github.com/llvm/llvm-project/issues/121135 S390X/SystemZ: https://github.com/llvm/llvm-project/issues/121137
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Test code
Known workable platforms
Known unworkable platforms
The text was updated successfully, but these errors were encountered: