blob: 2e923b303cd0cc076fee20d728574b65bb2d0448 [file] [log] [blame]
Daniel Dunbar80737ad2009-12-15 22:01:24 +00001// RUN: %clang %s -O0 -emit-llvm -S -o - | grep 'call.*rb_define_global_function'
Chris Lattnerc581e6e2009-06-16 17:39:02 +00002// This should call rb_define_global_function, not rb_f_chop.
3
4void rb_define_global_function (const char*,void(*)(),int);
5static void rb_f_chop();
6void Init_String() {
7 rb_define_global_function("chop", rb_f_chop, 0);
8}
9static void rb_f_chop() {
10}
11