annotate clang/test/Interpreter/lambda.cpp @ 236:c4bab56944e8 llvm-original

LLVM 16
author kono
date Wed, 09 Nov 2022 17:45:10 +0900
parents
children 1f2b6ac9f198
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
236
c4bab56944e8 LLVM 16
kono
parents:
diff changeset
1 // RUN: clang-repl "int x = 10;" "int y=7; err;" "int y = 10;"
c4bab56944e8 LLVM 16
kono
parents:
diff changeset
2 // RUN: clang-repl "int i = 10;" 'extern "C" int printf(const char*,...);' \
c4bab56944e8 LLVM 16
kono
parents:
diff changeset
3 // RUN: 'auto r1 = printf("i = %d\n", i);' | FileCheck --check-prefix=CHECK-DRIVER %s
c4bab56944e8 LLVM 16
kono
parents:
diff changeset
4 // REQUIRES: host-supports-jit
c4bab56944e8 LLVM 16
kono
parents:
diff changeset
5 // UNSUPPORTED: system-aix
c4bab56944e8 LLVM 16
kono
parents:
diff changeset
6 // CHECK-DRIVER: i = 10
c4bab56944e8 LLVM 16
kono
parents:
diff changeset
7 // RUN: cat %s | clang-repl | FileCheck %s
c4bab56944e8 LLVM 16
kono
parents:
diff changeset
8 // RUN: cat %s | clang-repl -Xcc -O2 | FileCheck %s
c4bab56944e8 LLVM 16
kono
parents:
diff changeset
9 extern "C" int printf(const char *, ...);
c4bab56944e8 LLVM 16
kono
parents:
diff changeset
10
c4bab56944e8 LLVM 16
kono
parents:
diff changeset
11 auto l1 = []() { printf("ONE\n"); return 42; };
c4bab56944e8 LLVM 16
kono
parents:
diff changeset
12 auto l2 = []() { printf("TWO\n"); return 17; };
c4bab56944e8 LLVM 16
kono
parents:
diff changeset
13
c4bab56944e8 LLVM 16
kono
parents:
diff changeset
14 auto r1 = l1();
c4bab56944e8 LLVM 16
kono
parents:
diff changeset
15 // CHECK: ONE
c4bab56944e8 LLVM 16
kono
parents:
diff changeset
16 auto r2 = l2();
c4bab56944e8 LLVM 16
kono
parents:
diff changeset
17 // CHECK: TWO
c4bab56944e8 LLVM 16
kono
parents:
diff changeset
18 auto r3 = l2();
c4bab56944e8 LLVM 16
kono
parents:
diff changeset
19 // CHECK: TWO
c4bab56944e8 LLVM 16
kono
parents:
diff changeset
20
c4bab56944e8 LLVM 16
kono
parents:
diff changeset
21 %quit