28 lines · plain
1; RUN: llc -verify-machineinstrs -mtriple="powerpc64le-unknown-linux-gnu" -relocation-model=pic < %s | FileCheck %s2; CHECK-LABEL: foo_test:3; CHECK: mflr 04; CHECK: __tls_get_addr5 6%struct1.2.41 = type { %struct2.0.39, %struct3.1.40, ptr }7%struct2.0.39 = type { i64, i32, i32, i32, i32 }8%struct3.1.40 = type { [160 x i8] }9 10@tls_var = external thread_local global ptr, align 811 12define i32 @foo_test() {13 %1 = load ptr, ptr @tls_var, align 814 15 %2 = getelementptr inbounds %struct1.2.41, ptr %1, i64 0, i32 0, i32 316 %3 = load i32, ptr %2, align 817 %4 = add nsw i32 %3, -118 %5 = icmp eq i32 %4, 019 br i1 %5, label %bb7, label %foo.exit20 21bb7: ; preds = %322 tail call void undef(ptr undef, ptr nonnull undef)23 br label %foo.exit24 25foo.exit: ; preds = %8, %3, %2, %026 ret i32 %427}28