[llvm] r233214 - Linker: Loosen checks slightly from r233207

Duncan P. N. Exon Smith dexonsmith at apple.com
Wed Mar 25 13:51:22 PDT 2015


Author: dexonsmith
Date: Wed Mar 25 15:51:21 2015
New Revision: 233214

URL: http://llvm.org/viewvc/llvm-project?rev=233214&view=rev
Log:
Linker: Loosen checks slightly from r233207

According to at least one bot [1], function prologues aren't always
empty for these functions.  Skip that part of the follow-up check.

Modified:
    llvm/trunk/test/Linker/subprogram-linkonce-weak.ll

Modified: llvm/trunk/test/Linker/subprogram-linkonce-weak.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/Linker/subprogram-linkonce-weak.ll?rev=233214&r1=233213&r2=233214&view=diff
==============================================================================
--- llvm/trunk/test/Linker/subprogram-linkonce-weak.ll (original)
+++ llvm/trunk/test/Linker/subprogram-linkonce-weak.ll Wed Mar 25 15:51:21 2015
@@ -145,14 +145,14 @@ entry:
 
 ; DWLW-LABEL: file_names[{{ *}}1]{{.*}} bar.c
 ; DWLW:       [[BARLOW]]  0 0 1 0 0 is_stmt
-; DWLW:       [[BARLOW]]  2 0 1 0 0 is_stmt prologue_end
+; DWLW:                   2 0 1 0 0 is_stmt prologue_end
 ; DWLW-LABEL: file_names[{{ *}}1]{{.*}} foo.c
 ; DWLW:       [[FOOLOW]]  0 0 1 0 0 is_stmt
-; DWLW:       [[FOOLOW]] 52 0 1 0 0 is_stmt prologue_end
+; DWLW:                  52 0 1 0 0 is_stmt prologue_end
 
 ; DWWL-LABEL: file_names[{{ *}}1]{{.*}} foo.c
 ; DWWL:       [[FOOLOW]]  0 0 1 0 0 is_stmt
-; DWWL:       [[FOOLOW]] 52 0 1 0 0 is_stmt prologue_end
+; DWWL:                  52 0 1 0 0 is_stmt prologue_end
 ; DWWL-LABEL: file_names[{{ *}}1]{{.*}} bar.c
 ; DWWL:       [[BARLOW]]  0 0 1 0 0 is_stmt
-; DWWL:       [[BARLOW]]  2 0 1 0 0 is_stmt prologue_end
+; DWWL:                   2 0 1 0 0 is_stmt prologue_end





More information about the llvm-commits mailing list