xref: /aosp_15_r20/external/llvm/test/CodeGen/X86/darwin-quote.ll (revision 9880d6810fe72a1726cb53787c6711e909410d58)
1; RUN: llc < %s -mtriple=i386-apple-darwin  | FileCheck %s
2
3
4define internal i64 @baz() nounwind {
5  %tmp = load i64, i64* @"+x"
6  ret i64 %tmp
7; CHECK: _baz:
8; CHECK:    movl "L_+x$non_lazy_ptr", %ecx
9}
10
11
12@"+x" = external global i64
13
14; CHECK: "L_+x$non_lazy_ptr":
15; CHECK:	.indirect_symbol "_+x"
16