diff options
Diffstat (limited to 'llvm/projects/Stacker/test/while.st')
-rw-r--r-- | llvm/projects/Stacker/test/while.st | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/llvm/projects/Stacker/test/while.st b/llvm/projects/Stacker/test/while.st deleted file mode 100644 index 7798f12e1f2..00000000000 --- a/llvm/projects/Stacker/test/while.st +++ /dev/null @@ -1,8 +0,0 @@ -# -# WHILE test -# -FORWARD success; -FORWARD failure; -: body "." >s DROP -- ; -: do_while WHILE body END ; -: MAIN 20 do_while 0 = IF success ELSE failure ENDIF; |