diff options
author | Rafael Espindola <rafael.espindola@gmail.com> | 2013-11-02 05:29:22 +0000 |
---|---|---|
committer | Rafael Espindola <rafael.espindola@gmail.com> | 2013-11-02 05:29:22 +0000 |
commit | e62e056766ca1e6bc5d7d4d598c89af8b9bd835d (patch) | |
tree | f16acd78830f1fbea2aa16591a07e9623db5b36e /test/LTO | |
parent | 6152f7d59615de9e4fa869bdc89570560c34bddb (diff) | |
download | external_llvm-e62e056766ca1e6bc5d7d4d598c89af8b9bd835d.zip external_llvm-e62e056766ca1e6bc5d7d4d598c89af8b9bd835d.tar.gz external_llvm-e62e056766ca1e6bc5d7d4d598c89af8b9bd835d.tar.bz2 |
Fix this test to pass on darwin now that llvm-nm is working.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@193914 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/LTO')
-rw-r--r-- | test/LTO/linkonce_odr_func.ll | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/test/LTO/linkonce_odr_func.ll b/test/LTO/linkonce_odr_func.ll index ef5eaac..7095212 100644 --- a/test/LTO/linkonce_odr_func.ll +++ b/test/LTO/linkonce_odr_func.ll @@ -3,10 +3,6 @@ ; RUN: -dso-symbol=foo4 %t1 -disable-opt ; RUN: llvm-nm %t2 | FileCheck %s -; FIXME: it looks like -march option of llvm-lto is not working and llvm-nm is -; not printing the correct values with Mach-O. -; XFAIL: darwin - ; FIXME: llvm-nm is printing 'd' instead of 't' for foo1. ; XFAIL: powerpc64 @@ -15,7 +11,7 @@ define linkonce_odr void @"\01foo1"() noinline { ret void } -; CHECK: {{W|T}} foo2 +; CHECK: {{W|T|S}} foo2 define linkonce_odr void @"\01foo2"() noinline { ret void } @@ -25,7 +21,7 @@ define linkonce_odr void @"\01foo3"() noinline { ret void } -; CHECK: {{W|T}} foo4 +; CHECK: {{W|T|S}} foo4 define linkonce_odr void @"\01foo4"() noinline { ret void } |