blob: b78bb1940c2ba80b930059db10b3ff8c00e0b579 [file] [log] [blame]
Rafael Espindolad3ca8be2008-09-08 11:17:54 +00001; Test fastcc works. Test from bug 2770.
Dan Gohmanc8054d92009-09-09 00:09:15 +00002; RUN: llc < %s -relocation-model=pic
Rafael Espindolad3ca8be2008-09-08 11:17:54 +00003
4
5%struct.__gcov_var = type { i32 }
6@__gcov_var = external global %struct.__gcov_var
7
8define fastcc void @gcov_read_words(i32 %words) {
9entry:
David Blaikief72d05b2015-03-13 18:20:45 +000010 store i32 %words, i32* getelementptr (%struct.__gcov_var, %struct.__gcov_var*
Rafael Espindolad3ca8be2008-09-08 11:17:54 +000011@__gcov_var,
12i32 0, i32 0)
13 ret void
14}