Imported Upstream version 5.18.0.167

Former-commit-id: 289509151e0fee68a1b591a20c9f109c3c789d3a
This commit is contained in:
Xamarin Public Jenkins (auto-signing)
2018-10-20 08:25:10 +00:00
parent e19d552987
commit b084638f15
28489 changed files with 184 additions and 3866856 deletions

View File

@ -1,41 +0,0 @@
# RUN: not llvm-mc -triple i686-elf -filetype asm -o /dev/null %s 2>&1 \
# RUN: | FileCheck %s
.data
.global invalid_expression
.type invalid_expression,@object
invalid_expression:
.rept *
# CHECK: error: unknown token in expression
# CHECK: .rept *
# CHECK: ^
.global bad_token
.type bad_token,@object
bad_token:
.rept bad_token
# CHECK: error: unexpected token in '.rept' directive
# CHECK: .rept bad_token
# CHECK: ^
.global negative
.type negative,@object
negative:
.rept -32
# CHECK: error: Count is negative
# CHECK: .rept -32
# CHECK: ^
.global trailer
.type trailer,@object
trailer:
.rep 0 trailer
# CHECK: error: unexpected token in '.rep' directive
# CHECK: .rep 0 trailer
# CHECK: ^