mirror of
https://github.com/RPCS3/llvm.git
synced 2025-05-23 22:06:19 +00:00

Reviewers: ddunbar, echristo, beanz Patch by Brian Gesiak! Subscribers: llvm-commits, mehdi_amini Differential Revision: https://reviews.llvm.org/D25169 git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@283089 91177308-0d34-0410-b5e6-96231b3b80d8
10 lines
206 B
Python
10 lines
206 B
Python
# RUN: %{python} %s
|
|
from __future__ import print_function
|
|
|
|
import sys
|
|
|
|
print("Running infinite loop")
|
|
sys.stdout.flush() # Make sure the print gets flushed so it appears in lit output.
|
|
while True:
|
|
pass
|