1; REQUIRES: x86 2; RUN: llvm-as %s -o %t1.o 3; RUN: ld.lld %t1.o %t1.o -o %t.so -shared 4 5target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" 6target triple = "x86_64-unknown-linux-gnu" 7 8define weak void @foo(ptr %p) { 9 store i32 5, ptr %p, align 4, !tbaa !0 10 ret void 11} 12 13!0 = !{!1, !1, i64 0} 14!1 = !{!"int", !2} 15!2 = !{!"Simple C/C++ TBAA"} 16