You've already forked llvm-project
mirror of
https://github.com/encounter/llvm-project.git
synced 2026-03-30 11:27:19 -07:00
bdd9669310
Also, add a test for generator a C file with a very deep call stack. llvm-svn: 90468
25 lines
451 B
Python
Executable File
25 lines
451 B
Python
Executable File
#!/usr/bin/env python
|
|
|
|
def pcall(f, N):
|
|
if N == 0:
|
|
print >>f, ' f(0)'
|
|
return
|
|
|
|
print >>f, ' f('
|
|
pcall(f, N - 1)
|
|
print >>f, ' )'
|
|
|
|
def main():
|
|
f = open('t.c','w')
|
|
print >>f, 'int f(int n) { return n; }'
|
|
print >>f, 'int t() {'
|
|
print >>f, ' return'
|
|
pcall(f, 10000)
|
|
print >>f, ' ;'
|
|
print >>f, '}'
|
|
|
|
if __name__ == "__main__":
|
|
import sys
|
|
sys.setrecursionlimit(100000)
|
|
main()
|