brintos

brintos / llvm-project-archived public Read only

0
0
Text · 908 B · c6a142f Raw
31 lines · plain
1; RUN: llc -filetype=obj -mtriple=ve -o - %s |  llvm-objdump - -d -r \2; RUN:     | FileCheck %s3; RUN: llc -filetype=obj -mtriple=ve -relocation-model=pic -o - %s \4; RUN:     |  llvm-objdump - -d -r | FileCheck %s -check-prefix=PIC5 6; CHECK:        lea %s0, 07; CHECK-NEXT:   R_VE_LO32 foo8; CHECK-NEXT:   and %s0, %s0, (32)09; CHECK-NEXT:   lea.sl %s12, (, %s0)10; CHECK-NEXT:   R_VE_HI32 foo11; PIC:        lea %s15, (-24)12; PIC-NEXT:   R_VE_PC_LO32 _GLOBAL_OFFSET_TABLE_13; PIC-NEXT:   and %s15, %s15, (32)014; PIC-NEXT:   sic %s1615; PIC-NEXT:   lea.sl %s15, (%s16, %s15)16; PIC-NEXT:   R_VE_PC_HI32 _GLOBAL_OFFSET_TABLE_17; PIC-NEXT:   lea %s12, (-24)18; PIC-NEXT:   R_VE_PLT_LO32 foo19; PIC-NEXT:   and %s12, %s12, (32)020; PIC-NEXT:   sic %s1621; PIC-NEXT:   lea.sl %s12, (%s16, %s12)22; PIC-NEXT:   R_VE_PLT_HI32 foo23 24define i32 @main() {25entry:26  %call = call i32 @foo()27  ret i32 %call28}29 30declare i32 @foo()31