[llvm-commits] [llvm] r141653 - /llvm/trunk/test/MC/ELF/many-section.s
Nick Lewycky
nicholas at mxc.ca
Mon Oct 10 23:58:11 PDT 2011
Author: nicholas
Date: Tue Oct 11 01:58:11 2011
New Revision: 141653
URL: http://llvm.org/viewvc/llvm-project?rev=141653&view=rev
Log:
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.
Modified:
llvm/trunk/test/MC/ELF/many-section.s
Modified: llvm/trunk/test/MC/ELF/many-section.s
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/MC/ELF/many-section.s?rev=141653&r1=141652&r2=141653&view=diff
==============================================================================
--- llvm/trunk/test/MC/ELF/many-section.s (original)
+++ llvm/trunk/test/MC/ELF/many-section.s Tue Oct 11 01:58:11 2011
@@ -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
More information about the llvm-commits
mailing list