brintos

brintos / llvm-project-archived public Read only

0
0
Text · 251 B · fae0862 Raw
11 lines · c
1// First, make sure --check-globals doesn't crash on a non-FileChecked command.2// RUN: true3// RUN: %clang_cc1 -triple x86_64-pc-linux-gnu -emit-llvm -o - %s | FileCheck %s4 5void foo(void) {6  static int i, j;7}8void bar(void) {9  static int i, j;10}11