diff options
author | Nick Lewycky <nicholas@mxc.ca> | 2011-10-11 06:58:11 +0000 |
---|---|---|
committer | Nick Lewycky <nicholas@mxc.ca> | 2011-10-11 06:58:11 +0000 |
commit | 3e01bd3b60e314fa71de539e652a6b1eb5bdc842 (patch) | |
tree | a189119b560a16d897ec69e3790a5413d5b7fcb6 | |
parent | 603cc851f80e71ba308d198eb3966e84cdc22045 (diff) | |
download | bcm5719-llvm-3e01bd3b60e314fa71de539e652a6b1eb5bdc842.tar.gz bcm5719-llvm-3e01bd3b60e314fa71de539e652a6b1eb5bdc842.zip |
Apparently, sometimes llvm-nm doesn't put the undefined symbol at the top. Take
that into account and test for no U's showing up in the middle, which is what
we really wanted to test for.
llvm-svn: 141653
-rw-r--r-- | llvm/test/MC/ELF/many-section.s | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/llvm/test/MC/ELF/many-section.s b/llvm/test/MC/ELF/many-section.s index c5ef90fcd09..e7e723ad905 100644 --- a/llvm/test/MC/ELF/many-section.s +++ b/llvm/test/MC/ELF/many-section.s @@ -1,9 +1,8 @@ // RUN: llvm-mc -filetype=obj -triple x86_64-pc-linux-gnu %s -o %t // RUN: llvm-nm %t | FileCheck %s -// CHECK: U -// CHECK-NOT: U // CHECK: s000a +// CHECK-NOT: U // CHECK: szzzb .section saaaa |