mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-25 20:23:11 +01:00
dc883a9c61
Summary: This patch replaces the non-portable GNU diff option `--strip-trailing-cr` with the POSIX `-b` option in two test files. Reviewers: daltenty, jasonliu Reviewed By: daltenty Subscribers: llvm-commits Tags: #llvm Differential Revision: https://reviews.llvm.org/D72745
11 lines
209 B
ArmAsm
11 lines
209 B
ArmAsm
@RUN: llvm-mc -preserve-comments -n -triple arm-eabi < %s > %t
|
|
@RUN: sed 's/#[C]omment/@Comment/g' %s > %t2
|
|
@RUN: diff -b %t %t2
|
|
.text
|
|
|
|
mov r0, r0
|
|
foo: #Comment here
|
|
mov r0, r0 @ EOL comment
|
|
.ident ""
|
|
|