[llvm] r369774 - Fix target for new X86 test

Teresa Johnson via llvm-commits llvm-commits at lists.llvm.org
Fri Aug 23 09:02:26 PDT 2019


Author: tejohnson
Date: Fri Aug 23 09:02:25 2019
New Revision: 369774

URL: http://llvm.org/viewvc/llvm-project?rev=369774&view=rev
Log:
Fix target for new X86 test

Test added in r369766 had the wrong target arch for the X86 directory,
leading to some bot failures. Fix it to have the appropriate target.

Modified:
    llvm/trunk/test/LTO/Resolution/X86/not-prevailing-weak-aliasee.ll

Modified: llvm/trunk/test/LTO/Resolution/X86/not-prevailing-weak-aliasee.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/LTO/Resolution/X86/not-prevailing-weak-aliasee.ll?rev=369774&r1=369773&r2=369774&view=diff
==============================================================================
--- llvm/trunk/test/LTO/Resolution/X86/not-prevailing-weak-aliasee.ll (original)
+++ llvm/trunk/test/LTO/Resolution/X86/not-prevailing-weak-aliasee.ll Fri Aug 23 09:02:25 2019
@@ -15,8 +15,8 @@
 ; CHECK: declare hidden void @__b
 ; CHECK: declare void @b
 
-target datalayout = "e-m:e-i8:8:32-i16:16:32-i64:64-i128:128-n32:64-S128"
-target triple = "aarch64-unknown-linux-gnu"
+target datalayout = "e-m:e-i64:64-f80:128-n8:16:32:64-S128"
+target triple = "x86_64-unknown-linux-gnu"
 
 @a = hidden alias void (), void ()* @__a
 




More information about the llvm-commits mailing list