Searched
full:llvm (Results
451 -
475 of
24291) sorted by null
<<11121314151617181920>>
/external/llvm/test/Linker/ |
basiclink.ll | 3 ; RUN: llvm-as %S/Inputs/basiclink.a.ll -o %t.foo.bc 4 ; RUN: llvm-as %S/Inputs/basiclink.b.ll -o %t.bar.bc 5 ; RUN: llvm-link %t.foo.bc %t.bar.bc -o %t.bc 6 ; RUN: llvm-link %t.bar.bc %t.foo.bc -o %t.bc
|
global_ctors.ll | 1 ; RUN: llvm-as %s -o %t.new.bc 2 ; RUN: llvm-link %t.new.bc %S/Inputs/old_global_ctors.3.4.bc | llvm-dis | FileCheck %s 4 ; old_global_ctors.3.4.bc contains the following LLVM IL, assembled into 5 ; bitcode by llvm-as from 3.4. It uses a two element @llvm.global_ctors array. 10 ; @llvm.global_ctors = appending global [2 x { i32, void ()* } ] [ 19 @llvm.global_ctors = appending global [2 x { i32, void ()*, i8* } ] [ 24 ; CHECK: @llvm.global_ctors = appending global [4 x { i32, void ()*, i8* }] [
|
multiple-merged-structs.ll | 1 ; RUN: llvm-link %S/Inputs/PR11464.a.ll %S/Inputs/PR11464.b.ll
|
weakextern.ll | 1 ; RUN: llvm-as < %s > %t.bc 2 ; RUN: llvm-as < %p/testlink1.ll > %t2.bc 3 ; RUN: llvm-link %t.bc %t.bc %t2.bc -o %t1.bc 4 ; RUN: llvm-dis < %t1.bc | FileCheck %s
|
/external/llvm/test/MC/ARM/ |
pr11877.s | 1 // RUN: llvm-mc -triple arm-unknown-unknown %s
|
/external/llvm/test/MC/AsmParser/ |
extern.s | 1 # RUN: llvm-mc -triple i386-unknown-unknown %s | FileCheck %s
|
pr11865.s | 1 // RUN: llvm-mc -triple i386-unknown-unknown %s
|
/external/llvm/test/MC/COFF/ |
bss.s | 3 // RUN: llvm-mc -filetype=obj -triple i686-pc-win32 %s | llvm-readobj -s | FileCheck %s 4 // RUN: llvm-mc -filetype=obj -triple x86_64-pc-win32 %s | llvm-readobj -s | FileCheck %s
|
invalid-def.s | 1 # RUN: not llvm-mc -triple i686-windows -filetype obj -o /dev/null %s
|
invalid-endef.s | 1 # RUN: not llvm-mc -triple i686-windows -filetype obj -o /dev/null %s
|
invalid-scl-range.s | 1 # RUN: not llvm-mc -triple i686-windows -filetype obj -o /dev/null %s
|
invalid-scl.s | 1 # RUN: not llvm-mc -triple i686-windows -filetype obj -o /dev/null %s
|
invalid-type-range.s | 1 # RUN: not llvm-mc -triple i686-windows -filetype obj -o /dev/null %s
|
invalid-type.s | 1 # RUN: not llvm-mc -triple i686-windows -filetype obj -o /dev/null %s
|
/external/llvm/test/MC/Mips/ |
elf-objdump.s | 2 // RUN: llvm-mc -filetype=obj -triple mips-unknown-linux %s -o - | llvm-objdump -d -triple mips-unknown-linux - | FileCheck %s 4 // RUN: llvm-mc -filetype=obj -triple mipsel-unknown-linux %s -o - | llvm-objdump -d -triple mips-unknown-linux - | FileCheck %s 6 // RUN: llvm-mc -filetype=obj -arch=mips64 -triple mips64-unknown-linux %s -o - | llvm-objdump -d -triple mips-unknown-linux - | FileCheck %s 8 // RUN: llvm-mc -filetype=obj -arch=mips64el -triple mips64el-unknown-linux %s -o - | llvm-objdump -d -triple mips-unknown-linux - | FileCheck %s 10 // We just want to see if llvm-objdump works at all.
|
pr11877.s | 1 // RUN: llvm-mc -triple mips-unknown-unknown %s
|
/external/llvm/test/MC/X86/ |
2011-09-06-NoNewline.s | 1 // RUN: llvm-mc -triple i386-unknown-unknown %s
|
fde-reloc.s | 1 // RUN: llvm-mc -filetype=obj %s -o - -triple x86_64-pc-linux | llvm-objdump -r - | FileCheck --check-prefix=X86-64 %s 2 // RUN: llvm-mc -filetype=obj %s -o - -triple i686-pc-linux | llvm-objdump -r - | FileCheck --check-prefix=I686 %s
|
/external/llvm/test/Object/ |
archive-delete.test | 1 Test the 'd' operation in llvm-ar 9 RUN: llvm-ar d %t.a very_long_bytecode_file_name.bc 10 RUN: llvm-ar t %t.a | FileCheck %s 14 RUN: llvm-ar d %t.a very_long_bytecode_file_name.bc 15 RUN: llvm-ar t %t.a | FileCheck %s 19 RUN: llvm-ar d %t.a very_long_bytecode_file_name.bc 20 RUN: llvm-ar t %t.a | FileCheck %s 24 RUN: llvm-ar d %t.a very_long_bytecode_file_name.bc 25 RUN: llvm-ar t %t.a | FileCheck %s
|
mangle-ir.ll | 1 ; RUN: llvm-as %s -o - | llvm-nm - | FileCheck %s 10 tail call void @llvm.memcpy.p0i8.p0i8.i64(i8* null, i8* null, i64 0, i32 1, i1 false) 14 declare void @llvm.memcpy.p0i8.p0i8.i64(i8* nocapture, i8* nocapture readonly, i64, i32, i1)
|
nm-weak-global-macho.test | 1 RUN: llvm-nm %p/Inputs/weak-global-symbol.macho-i386 | FileCheck %s
|
/external/llvm/test/TableGen/ |
2003-08-03-PassCode.td | 1 // RUN: llvm-tblgen %s
|
BitsInitOverflow.td | 1 // RUN: not llvm-tblgen %s 2> /dev/null
|
CStyleComment.td | 3 // RUN: llvm-tblgen < %s
|
/external/llvm/test/Transforms/InstCombine/ |
invariant.ll | 1 ; Test to make sure unused llvm.invariant.start calls are not trivially eliminated 6 declare {}* @llvm.invariant.start(i64, i8* nocapture) nounwind readonly 11 %i = call {}* @llvm.invariant.start(i64 1, i8* %a) ; <{}*> [#uses=0] 12 ; CHECK: call {}* @llvm.invariant.start
|
Completed in 2241 milliseconds
<<11121314151617181920>>