[llvm] r220499 - Cleanup this test a bit.

Rafael Espindola rafael.espindola at gmail.com
Thu Oct 23 12:36:21 PDT 2014


Author: rafael
Date: Thu Oct 23 14:36:21 2014
New Revision: 220499

URL: http://llvm.org/viewvc/llvm-project?rev=220499&view=rev
Log:
Cleanup this test a bit.

Use simpler names and remove unnecessary fields.

Modified:
    llvm/trunk/test/Linker/comdat7.ll

Modified: llvm/trunk/test/Linker/comdat7.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/Linker/comdat7.ll?rev=220499&r1=220498&r2=220499&view=diff
==============================================================================
--- llvm/trunk/test/Linker/comdat7.ll (original)
+++ llvm/trunk/test/Linker/comdat7.ll Thu Oct 23 14:36:21 2014
@@ -1,9 +1,8 @@
-; RUN: not llvm-link %s %p/Inputs/comdat5.ll -S -o - 2>&1 | FileCheck %s
-target datalayout = "e-m:w-p:32:32-i64:64-f80:32-n8:16:32-S32"
-target triple = "i686-pc-windows-msvc"
+; RUN: not llvm-link %s %s -S -o - 2>&1 | FileCheck %s
 
-$"\01??_7S@@6B@" = comdat largest
-define void @"\01??_7S@@6B@"() {
+$c1 = comdat largest
+
+define void @c1() comdat $c1 {
   ret void
 }
 ; CHECK: GlobalVariable required for data dependent selection!





More information about the llvm-commits mailing list