[RISCV] Reduce redundancy in vnsrl tests
[llvm-project.git] / clang / test / Interpreter / plugins.cpp
blob59e4f2f29240980b92c52855400820d502c631dd
1 // RUN: cat %s | clang-repl -Xcc -Xclang -Xcc -load -Xcc -Xclang \
2 // RUN: -Xcc %llvmshlibdir/PrintFunctionNames%pluginext -Xcc -Xclang\
3 // RUN: -Xcc -add-plugin -Xcc -Xclang -Xcc print-fns 2>&1 | FileCheck %s
4 // REQUIRES: plugins, examples
6 int i = 10;
7 extern "C" int printf(const char*,...);
8 auto r1 = printf("i = %d\n", i);
9 %quit
11 // CHECK: top-level-decl: "i"
12 // CHECK-NEXT: top-level-decl: "r1"
13 // CHECK-NEXT: i = 10