Details
Details
Diff Detail
Diff Detail
- Repository
- rL LLVM
Event Timeline
Comment Actions
LGTM with a nit:
+target datalayout = "e-m:e-i64:64-f80:128-n8:16:32:64-S128"
+target triple = "x86_64-unknown-freebsd11.0"
+
+module asm ".weak libc_blah"
+module asm ".equ libc_blah, blah"
The test body can be just
module asm ".weak libc_blah"
module asm "libc_blah:"
no need to include an IR function.
Cheers,
Rafael