1 // RUN: clang-repl "int x = 10;" "int y=7; err;" "int y = 10;" 2 // RUN: clang-repl "int i = 10;" 'extern "C" int printf(const char*,...);' \ 3 // RUN: 'auto r1 = printf("i = %d\n", i);' | FileCheck --check-prefix=CHECK-DRIVER %s 4 // REQUIRES: host-supports-jit 5 // UNSUPPORTED: system-aix 6 // XFAIL: system-windows 7 // CHECK-DRIVER: i = 10 8 // RUN: cat %s | clang-repl | FileCheck %s 9 extern "C" int printf(const char *, ...); 10 int i = 42; 11 auto r1 = printf("i = %d\n", i); 12 // CHECK: i = 42 13 14 struct S { float f = 1.0; S *m = nullptr;} s; 15 16 auto r2 = printf("S[f=%f, m=0x%llx]\n", s.f, reinterpret_cast<unsigned long long>(s.m)); 17 // CHECK-NEXT: S[f=1.000000, m=0x0] 18 19 inline int foo() { return 42; } 20 int r3 = foo(); 21 22 int __attribute__((weak)) bar() { return 1; } 23 auto r4 = printf("bar() = %d\n", bar()); 24 // CHECK-NEXT: bar() = 1 25 26 %quit 27