diff options
author | Benjamin Kramer <benny.kra@googlemail.com> | 2017-01-22 20:28:56 +0000 |
---|---|---|
committer | Benjamin Kramer <benny.kra@googlemail.com> | 2017-01-22 20:28:56 +0000 |
commit | db9e0b659d01d96f044764d726335e6b50ddad48 (patch) | |
tree | 2b96d43b8dd9dfd60c594c20c74bff112f499a6f /llvm/test/CodeGen/AArch64/arm64-inline-asm.ll | |
parent | e5f6daa47580fa0b007d0dd860b4fcd8a0169d41 (diff) | |
download | bcm5719-llvm-db9e0b659d01d96f044764d726335e6b50ddad48.tar.gz bcm5719-llvm-db9e0b659d01d96f044764d726335e6b50ddad48.zip |
Fix some broken CHECK lines.
The colon is important.
llvm-svn: 292761
Diffstat (limited to 'llvm/test/CodeGen/AArch64/arm64-inline-asm.ll')
-rw-r--r-- | llvm/test/CodeGen/AArch64/arm64-inline-asm.ll | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/test/CodeGen/AArch64/arm64-inline-asm.ll b/llvm/test/CodeGen/AArch64/arm64-inline-asm.ll index f3f35938044..f28d0ab07c5 100644 --- a/llvm/test/CodeGen/AArch64/arm64-inline-asm.ll +++ b/llvm/test/CodeGen/AArch64/arm64-inline-asm.ll @@ -236,14 +236,14 @@ define void @test_zero_reg(i32* %addr) { define <2 x float> @test_vreg_64bit(<2 x float> %in) nounwind { ; CHECK-LABEL: test_vreg_64bit: %1 = tail call <2 x float> asm sideeffect "fadd ${0}.2s, ${1}.2s, ${1}.2s", "={v14},w"(<2 x float> %in) nounwind - ; CHECK fadd v14.2s, v0.2s, v0.2s: + ; CHECK: fadd v14.2s, v0.2s, v0.2s ret <2 x float> %1 } define <4 x float> @test_vreg_128bit(<4 x float> %in) nounwind { ; CHECK-LABEL: test_vreg_128bit: %1 = tail call <4 x float> asm sideeffect "fadd ${0}.4s, ${1}.4s, ${1}.4s", "={v14},w"(<4 x float> %in) nounwind - ; CHECK fadd v14.4s, v0.4s, v0.4s: + ; CHECK: fadd v14.4s, v0.4s, v0.4s ret <4 x float> %1 } |