https://github.com/mozilla/gecko-dev
Raw File
Tip revision: a2b76b0564f163d3a1ba93e3b55a2fba1305d39b authored by tbirdbld on 20 June 2012, 03:39:11 UTC
Added THUNDERBIRD_14_0b3_RELEASE THUNDERBIRD_14_0b3_BUILD1 tag(s) for changeset 7945471fc07f. DONTBUILD CLOSED TREE a=release
Tip revision: a2b76b0
test.cpp
extern "C" int mult(int l, int r);

extern "C" {

inline
int
farfle(int a, int b)
{
    return a * b + a / b;
}

static
int
ballywhoo(int a, int b)
{
    // So it can't get inlined
    if (a > 4)
        ballywhoo(a - 1, a + 1);

    return a + b;
}

static
int
blimpyburger(char a, int b)
{
    if (a == 'f')
        return b;

    return 0;
}

}

class foo
{
public:
    static int get_flooby() { static int flooby = 12; return flooby; }

    static int divide(int a, int b);

    foo() {}
    foo(int a);
    virtual ~foo() {}

    int bar();

    int baz(int a) { return a ? baz(a - 1) : 0; }
};

foo::foo(int a)
{
}

int
foo::divide(int a, int b)
{
    static int phlegm = 12;
    return a / b * ++phlegm;
}

int
foo::bar()
{
    return 12;
}

int main(int argc, char* argv[])
{
    int a = mult(5, 4);
    a = ballywhoo(5, 2);
    a = farfle(a, 6);
    a = blimpyburger('q', 4);

    foo f;
    f.get_flooby();
    a = f.bar();

    a = foo::divide(a, 12) + f.baz(6);

    foo f2(12);
    f2.baz(15);

    return a > 99 ? 1 : 0;
}
back to top