forked from OSchip/llvm-project
Fix test to run everywhere.
Because of X86 instead of x86 is was masked as unsupported everywhere. llvm-svn: 266996
This commit is contained in:
parent
15ca14c0b9
commit
543bebd8ee
|
@ -1,9 +1,8 @@
|
||||||
target triple = "x86_64-unknown-linux-gnu"
|
target triple = "x86_64-unknown-linux-gnu"
|
||||||
target datalayout = "e-m:e-i64:64-f80:128-n8:16:32:64-S128"
|
target datalayout = "e-m:e-i64:64-f80:128-n8:16:32:64-S128"
|
||||||
|
|
||||||
; REQUIRES: X86
|
; REQUIRES: x86
|
||||||
; RUN: llc %s -o %t.s
|
; RUN: llc %s -o %t.o -filetype=obj
|
||||||
; RUN: llvm-mc %t.s -o %t.o -filetype=obj
|
|
||||||
; RUN: llvm-as %p/Inputs/drop-linkage.ll -o %t2.o
|
; RUN: llvm-as %p/Inputs/drop-linkage.ll -o %t2.o
|
||||||
; RUN: ld.lld %t.o %t2.o -o %t.so -save-temps -shared
|
; RUN: ld.lld %t.o %t2.o -o %t.so -save-temps -shared
|
||||||
; RUN: llvm-dis %t.so.lto.opt.bc -o - | FileCheck %s
|
; RUN: llvm-dis %t.so.lto.opt.bc -o - | FileCheck %s
|
||||||
|
|
Loading…
Reference in New Issue