1*37b5eb0aSZaara Syeda; RUN: not --crash llc -mtriple powerpc-ibm-aix-xcoff < %s 2>&1 | FileCheck %s --check-prefix CHECK-ERROR 2*37b5eb0aSZaara Syeda; RUN: not --crash llc -mtriple powerpc64-ibm-aix-xcoff < %s 2>&1 | FileCheck %s --check-prefix CHECK-ERROR 3*37b5eb0aSZaara Syeda 4*37b5eb0aSZaara Syeda@a = global [5 x i16] zeroinitializer, align 2 #0 5*37b5eb0aSZaara Syeda 6*37b5eb0aSZaara Syeda; Function Attrs: noinline 7*37b5eb0aSZaara Syedadefine i16 @foo() #1 { 8*37b5eb0aSZaara Syedaentry: 9*37b5eb0aSZaara Syeda %0 = load i16, ptr @a, align 2 10*37b5eb0aSZaara Syeda ret i16 %0 11*37b5eb0aSZaara Syeda} 12*37b5eb0aSZaara Syeda 13*37b5eb0aSZaara Syedaattributes #0 = { "toc-data" } 14*37b5eb0aSZaara Syedaattributes #1 = { noinline } 15*37b5eb0aSZaara Syeda 16*37b5eb0aSZaara Syeda; CHECK-ERROR: LLVM ERROR: A GlobalVariable with size larger than a TOC entry is not currently supported by the toc data transformation. 17