repo.or.cz
/
clang.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
history
|
raw
|
HEAD
[Heikki Kultala] This patch contains the ABI changes for the TCE target.
[clang.git]
/
test
/
CodeGen
/
2010-02-15-Dbg-MethodStart.m
blob
5186b20310a6a7cfbfe811457aeaa2ffb07706be
1
// RUN: %clang_cc1 -x objective-c -emit-llvm -g < %s | grep subprogram | grep "i32 9"
2
// Test to check that subprogram start location.
3
4
@interface Foo
5
-(int) barMethod;
6
@end
7
8
@implementation Foo
9
-(int) barMethod {
10
int i = 0;
11
int j = 1;
12
int k = 1;
13
return i + j + k;
14
}
15
@end