[PowerPC] Collect some CallLowering arguments into a struct. [NFC]
[llvm-project.git] / clang / test / Misc / interpreter.c
blob42e1645b7c61bed444eaa41ba2ad942e4292d7f7
1 // RUN: clang-interpreter %s | FileCheck %s
2 // REQUIRES: native, examples
4 int printf(const char *, ...);
6 int main() {
7 // CHECK: {{Hello world!}}
8 printf("Hello world!\n");
9 return 0;