mirror of
https://github.com/capstone-engine/llvm-capstone.git
synced 2024-12-12 09:41:26 +00:00
Don't recurse so deep in this test, pending APValue rework to further reduce the
stack pressure. llvm-svn: 144378
This commit is contained in:
parent
e19b0a9eb8
commit
3ba71043dc
@ -3,7 +3,7 @@
|
||||
constexpr unsigned oddfac(unsigned n) {
|
||||
return n == 1 ? 1 : n * oddfac(n-2);
|
||||
}
|
||||
constexpr unsigned k = oddfac(999);
|
||||
constexpr unsigned k = oddfac(123);
|
||||
|
||||
using A = int[k % 256];
|
||||
using A = int[73];
|
||||
using A = int[43];
|
||||
|
Loading…
Reference in New Issue
Block a user