[all-commits] [llvm/llvm-project] 039cb0: [builtins] Use %% as the separator for aarch64-*-d...
Fangrui Song via All-commits
all-commits at lists.llvm.org
Wed Dec 16 00:13:42 PST 2020
Branch: refs/heads/main
Home: https://github.com/llvm/llvm-project
Commit: 039cb03dd0dcff4daa17a062f7414ac22bf5f2eb
https://github.com/llvm/llvm-project/commit/039cb03dd0dcff4daa17a062f7414ac22bf5f2eb
Author: Fangrui Song <i at maskray.me>
Date: 2020-12-16 (Wed, 16 Dec 2020)
Changed paths:
M compiler-rt/lib/builtins/assembly.h
Log Message:
-----------
[builtins] Use %% as the separator for aarch64-*-darwin and ; for powerpc{32,64}
`;` is the default comment marker, which is also used by powerpc*-*-elf target triples.
`@` is the comment marker of powerpc*-*-darwin but the Darwin support has been deleted for PowerPC (D72063).
`%%` is the statement separator used by aarch64-*-darwin (see AArch64MCAsmInfoDarwin, it uses `;` as the comment marker, which is different from most other targets)
Reviewed By: tambre
Differential Revision: https://reviews.llvm.org/D93378
More information about the All-commits
mailing list