bug-global
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

A function calling bug in gtags-cscope


From: fanhe
Subject: A function calling bug in gtags-cscope
Date: Sun, 24 Feb 2013 17:02:59 +0800 (CST)

 
void func(int n)
{
}

void (*hook)(int n);

int main(int argc, char **argv)
{
    if (hook)
        hook(10);
    func(10);
    return 0;
}

Source code is above.
And gtags-cscope can not find where is calling function "hook".
For this case, cscope is ok.




reply via email to

[Prev in Thread] Current Thread [Next in Thread]