blob: 4b769f8ccbb08b52ab2de82ada5927db1daf27bf [file] [log] [blame]
Daniel Dunbard7d5f022009-03-24 02:24:46 +00001// RUN: clang-cc -emit-llvm -o - %s | not grep "common"
Anders Carlsson98883e12008-12-03 05:51:23 +00002
3// This checks that the global won't be marked as common.
4// (It shouldn't because it's being initialized).
5
6int a;
7int a = 242;