diff options
author | Chris Lattner <sabre@nondot.org> | 2009-10-29 05:25:27 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2009-10-29 05:25:27 +0000 |
commit | 08bb9ef7f71f2053a3683913bbad19941e0a6dc9 (patch) | |
tree | b4d96db908c3868501d25c28d48e705c246137d4 /clang/test/CodeGen/indirect-goto.c | |
parent | 1f0a56e4c90d6e18d84042318864cbee34c3694e (diff) | |
download | bcm5719-llvm-08bb9ef7f71f2053a3683913bbad19941e0a6dc9.tar.gz bcm5719-llvm-08bb9ef7f71f2053a3683913bbad19941e0a6dc9.zip |
make this interpretable.
llvm-svn: 85487
Diffstat (limited to 'clang/test/CodeGen/indirect-goto.c')
-rw-r--r-- | clang/test/CodeGen/indirect-goto.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/test/CodeGen/indirect-goto.c b/clang/test/CodeGen/indirect-goto.c index 4d5923d5679..6804f5739bb 100644 --- a/clang/test/CodeGen/indirect-goto.c +++ b/clang/test/CodeGen/indirect-goto.c @@ -26,6 +26,6 @@ L1: res *= 2; return res; } -int bar() { +int main() { return foo(3)+foo2(4); } |