xref: /llvm-project/clang/test/utils/update_cc_test_checks/Inputs/annotations.c (revision e6eda66cbc5ebf424b184506fc6bb27bee3d293f)
1 // RUN: %clang_cc1 -triple x86_64-unknown-unknown -fblocks -ftrivial-auto-var-init=zero %s -emit-llvm -o - | FileCheck %s
2 
foo()3 int foo() {
4     int x = x + 1;
5     return x;
6 }
7