make tblgen produce a function that returns the name for a physreg.
[llvm/avr.git] / test / FrontendC / 2005-07-28-IncorrectWeakGlobal.c
blob1a8c409439cea5bccf01f14b6663f5bc615e9db7
1 // RUN: %llvmgcc %s -S -o - | grep TheGlobal | not grep weak
3 extern int TheGlobal;
4 int foo() { return TheGlobal; }
5 int TheGlobal = 1;