Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / clang / test / Interpreter / execute.cpp
blob6e73ed3927e8155b26378cbc9e6b8f4b4b3b6f91
1 // UNSUPPORTED: system-aix
3 // clang-format off
4 // RUN: clang-repl "int i = 10;" 'extern "C" int printf(const char*,...);' \
5 // RUN: 'auto r1 = printf("i = %d\n", i);' | FileCheck --check-prefix=CHECK-DRIVER %s
6 // CHECK-DRIVER: i = 10
8 // RUN: cat %s | clang-repl | FileCheck %s
9 // RUN: cat %s | clang-repl -Xcc -O2 | FileCheck %s
10 extern "C" int printf(const char *, ...);
11 int i = 42;
12 auto r1 = printf("i = %d\n", i);
13 // CHECK: i = 42
15 struct S { float f = 1.0; S *m = nullptr;} s;
17 auto r2 = printf("S[f=%f, m=0x%llx]\n", s.f, reinterpret_cast<unsigned long long>(s.m));
18 // CHECK-NEXT: S[f=1.000000, m=0x0]
20 inline int foo() { return 42; }
21 int r3 = foo();
23 %quit