mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-02 07:11:49 +00:00
8b2b8a1835
This update was done with the following bash script: find test/CodeGen -name "*.ll" | \ while read NAME; do echo "$NAME" if ! grep -q "^; *RUN: *llc.*debug" $NAME; then TEMP=`mktemp -t temp` cp $NAME $TEMP sed -n "s/^define [^@]*@\([A-Za-z0-9_]*\)(.*$/\1/p" < $NAME | \ while read FUNC; do sed -i '' "s/;\(.*\)\([A-Za-z0-9_-]*\):\( *\)$FUNC: *\$/;\1\2-LABEL:\3$FUNC:/g" $TEMP done sed -i '' "s/;\(.*\)-LABEL-LABEL:/;\1-LABEL:/" $TEMP sed -i '' "s/;\(.*\)-NEXT-LABEL:/;\1-NEXT:/" $TEMP sed -i '' "s/;\(.*\)-NOT-LABEL:/;\1-NOT:/" $TEMP sed -i '' "s/;\(.*\)-DAG-LABEL:/;\1-DAG:/" $TEMP mv $TEMP $NAME fi done git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@186280 91177308-0d34-0410-b5e6-96231b3b80d8
22 lines
827 B
LLVM
22 lines
827 B
LLVM
target datalayout = "E-p:64:64:64-i1:8:8-i8:8:8-i16:16:16-i32:32:32-i64:64:64-f32:32:32-f64:64:64-v128:128:128-n32:64"
|
|
target triple = "powerpc64-unknown-freebsd10.0"
|
|
; RUN: llc -O0 < %s -march=ppc64 | FileCheck -check-prefix=OPT0 %s
|
|
; RUN: llc -O1 < %s -march=ppc64 | FileCheck -check-prefix=OPT1 %s
|
|
|
|
@a = thread_local global i32 0, align 4
|
|
|
|
;OPT0-LABEL: localexec:
|
|
;OPT1-LABEL: localexec:
|
|
define i32 @localexec() nounwind {
|
|
entry:
|
|
;OPT0: addis [[REG1:[0-9]+]], 13, a@tprel@ha
|
|
;OPT0-NEXT: li [[REG2:[0-9]+]], 42
|
|
;OPT0-NEXT: addi [[REG1]], [[REG1]], a@tprel@l
|
|
;OPT0: stw [[REG2]], 0([[REG1]])
|
|
;OPT1: addis [[REG1:[0-9]+]], 13, a@tprel@ha
|
|
;OPT1-NEXT: li [[REG2:[0-9]+]], 42
|
|
;OPT1-NEXT: stw [[REG2]], a@tprel@l([[REG1]])
|
|
store i32 42, i32* @a, align 4
|
|
ret i32 0
|
|
}
|