diff options
author | Vince Harron <vince@nethacker.com> | 2015-05-04 06:26:13 +0000 |
---|---|---|
committer | Vince Harron <vince@nethacker.com> | 2015-05-04 06:26:13 +0000 |
commit | f9900379b4644274f76842dae56ea013fb2abb8f (patch) | |
tree | 69d8d654a39fd675dd1257b22a0821e69c648c02 | |
parent | f8e6517591e2c9f696a9fa9888ea1627123aedc6 (diff) | |
download | bcm5719-llvm-f9900379b4644274f76842dae56ea013fb2abb8f.tar.gz bcm5719-llvm-f9900379b4644274f76842dae56ea013fb2abb8f.zip |
TestCModules - fixed for gcc
Changed restrict keyword to something understood by gcc
llvm-svn: 236410
-rw-r--r-- | lldb/test/lang/c/modules/main.c | 2 | ||||
-rw-r--r-- | lldb/test/lldbinline.py | 1 |
2 files changed, 1 insertions, 2 deletions
diff --git a/lldb/test/lang/c/modules/main.c b/lldb/test/lang/c/modules/main.c index 49fbe5c3d04..2b244bc38d0 100644 --- a/lldb/test/lang/c/modules/main.c +++ b/lldb/test/lang/c/modules/main.c @@ -1,6 +1,6 @@ #include <stdlib.h> -int printf(const char * restrict format, ...); +int printf(const char * __restrict format, ...); typedef struct { int a; diff --git a/lldb/test/lldbinline.py b/lldb/test/lldbinline.py index 20eb5a0d00a..3a81956ad75 100644 --- a/lldb/test/lldbinline.py +++ b/lldb/test/lldbinline.py @@ -121,7 +121,6 @@ class InlineTest(TestBase): self.buildDsym() self.do_test() - @expectedFailureGcc #xfail to get buildbot green, test failed with gcc4.8.2 def __test_with_dwarf(self): self.using_dsym = False self.BuildMakefile() |