diff options
author | Argyrios Kyrtzidis <akyrtzi@gmail.com> | 2011-11-01 19:47:41 +0000 |
---|---|---|
committer | Argyrios Kyrtzidis <akyrtzi@gmail.com> | 2011-11-01 19:47:41 +0000 |
commit | 1f49cda14f136cec6c8e662c8b5ef7cb3d99c067 (patch) | |
tree | 07f47f5c10175c65d973cd91f2ef4dc386d11628 /clang | |
parent | a8df2c7a749afc178c172e6c196f06fda7698f82 (diff) | |
download | bcm5719-llvm-1f49cda14f136cec6c8e662c8b5ef7cb3d99c067.tar.gz bcm5719-llvm-1f49cda14f136cec6c8e662c8b5ef7cb3d99c067.zip |
[libclang] Fix non-darwin buildbots.
llvm-svn: 143477
Diffstat (limited to 'clang')
-rw-r--r-- | clang/test/Index/usrs.m | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/clang/test/Index/usrs.m b/clang/test/Index/usrs.m index e7a926f3f3b..d1da2043144 100644 --- a/clang/test/Index/usrs.m +++ b/clang/test/Index/usrs.m @@ -1,4 +1,4 @@ -// RUN: c-index-test -test-load-source-usrs all %s | FileCheck %s + static inline int my_helper(int x, int y) { return x + y; } @@ -88,6 +88,7 @@ int test_multi_declaration(void) { @property (assign) id pro_ext; @end +// RUN: c-index-test -test-load-source-usrs all -ccc-host-triple x86_64-apple-macosx10.7 %s | FileCheck %s // CHECK: usrs.m c:usrs.m@67@F@my_helper Extent=[3:1 - 3:60] // CHECK: usrs.m c:usrs.m@95@F@my_helper@x Extent=[3:29 - 3:34] // CHECK: usrs.m c:usrs.m@102@F@my_helper@y Extent=[3:36 - 3:41] |