From 3f30cd73795d17f071cc03926fea28943c65f05f Mon Sep 17 00:00:00 2001 From: xgupta Date: Tue, 23 Feb 2021 00:14:18 +0530 Subject: [PATCH] patch --- llvm/test/Examples/BrainF/HelloWorld.ll | 20 ++++++++++++++++++++ llvm/test/Examples/BrainF/HelloWorld.test | 3 +++ 2 files changed, 23 insertions(+) create mode 100644 llvm/test/Examples/BrainF/HelloWorld.ll create mode 100644 llvm/test/Examples/BrainF/HelloWorld.test diff --git a/llvm/test/Examples/BrainF/HelloWorld.ll b/llvm/test/Examples/BrainF/HelloWorld.ll new file mode 100644 index 0000000..c8eef63 --- /dev/null +++ b/llvm/test/Examples/BrainF/HelloWorld.ll @@ -0,0 +1,20 @@ +; RUN: BrainF %s -o - | llvm-dis | FileCheck %s +++++++++[>++++[>++>+++>+++>+<<<<-]>+>+>->>+[<]<-]>>.>---.+++++++..+++.>>.<-.<.+++.------.--------.>>+.>++. + +# CHECK-LABEL: define void @brainf() { +# CHECK-NEXT: brainf: +# CHECK-NEXT: %malloccall = tail call i8* @malloc(i32 mul (i32 ptrtoint (i8* getelementptr (i8, i8* null, i32 1) to i32), i32 65536)) +# CHECK-NEXT: call void @llvm.memset.p0i8.i32(i8* %malloccall, i8 0, i32 65536, i1 false) +# CHECK-NEXT: %head = getelementptr i8, i8* %malloccall, i32 32768 +# CHECK-NEXT: %tape = load i8, i8* %head, align 1 +# CHECK: store i8 %tape2, i8* %head, align 1 +# CHECK: br label %brainf3 +# CHECK: brainf1: ; preds = %brainf55 +# CHECK-NEXT: tail call void @free(i8* %malloccall) +# CHECK-NEXT: ret void +# CHECK: } +# CHECK-LABEL: define i32 @main(i32 %argc, i8** %argv) { +# CHECK-NEXT: main.0: +# CHECK-NEXT: call void @brainf() +# CHECK-NEXT: ret i32 0 +# CHECK: } diff --git a/llvm/test/Examples/BrainF/HelloWorld.test b/llvm/test/Examples/BrainF/HelloWorld.test new file mode 100644 index 0000000..23483a3 --- /dev/null +++ b/llvm/test/Examples/BrainF/HelloWorld.test @@ -0,0 +1,3 @@ +; RUN: BrainF %s -o - | lli 2>&1 | FileCheck %s +++++++++[>++++[>++>+++>+++>+<<<<-]>+>+>->>+[<]<-]>>.>---.+++++++..+++.>>.<-.<.+++.------.--------.>>+.>++. +# CHECK: Hello World! -- 2.7.4