blob: ca4aa5921c3a70b08f7e1638bd2430aa8965f4c2 [file] [log] [blame]
Chris Lattner84301822004-12-03 17:18:42 +00001; RUN: llvm-as < %s | llc -march=c | not grep 'extern.*msg'
2
3; This is PR472
4
5%msg = internal global [6 x sbyte] c"hello\00"
6
7implementation ; Functions:
8
9sbyte* %foo() {
10entry:
11 ret sbyte* getelementptr ([6 x sbyte]* %msg, int 0, int 0)
12}