Daniel Dunbar | d7d5f02 | 2009-03-24 02:24:46 +0000 | [diff] [blame] | 1 | // RUN: clang-cc -emit-llvm -o - %s | not grep "common" |
Anders Carlsson | 98883e1 | 2008-12-03 05:51:23 +0000 | [diff] [blame] | 2 | |
3 | // This checks that the global won't be marked as common. | ||||
4 | // (It shouldn't because it's being initialized). | ||||
5 | |||||
6 | int a; | ||||
7 | int a = 242; |