[UpdateTestChecks] Fix $ in function test for ARM.

Removes AArch64 target checking inside 32bit ARM test to bring back
buildbots to a green state.  But $ are not well handled for ARM and it
still need to be fixed.
This commit is contained in:
Yvan Roux 2020-11-13 12:20:56 +01:00
parent 306c8ab208
commit dee452da7a
2 changed files with 4 additions and 6 deletions

View File

@ -1,6 +1,7 @@
; Check that we accept functions with '$' in the name.
; TODO: This is not handled correcly on 32bit ARM and needs to be fixed.
;
; RUN: llc -mtriple=arm64-unknown-linux < %s | FileCheck --prefi=LINUX %s
; RUN: llc -mtriple=armv7-unknown-linux < %s | FileCheck --prefix=LINUX %s
; RUN: llc -mtriple=armv7-apple-darwin < %s | FileCheck --prefix=DARWIN %s
; RUN: llc -mtriple=armv7-apple-ios < %s | FileCheck --prefix=IOS %s
;

View File

@ -1,15 +1,12 @@
; NOTE: Assertions have been autogenerated by utils/update_llc_test_checks.py
; Check that we accept functions with '$' in the name.
; TODO: This is not handled correcly on 32bit ARM and needs to be fixed.
;
; RUN: llc -mtriple=arm64-unknown-linux < %s | FileCheck --prefi=LINUX %s
; RUN: llc -mtriple=armv7-unknown-linux < %s | FileCheck --prefix=LINUX %s
; RUN: llc -mtriple=armv7-apple-darwin < %s | FileCheck --prefix=DARWIN %s
; RUN: llc -mtriple=armv7-apple-ios < %s | FileCheck --prefix=IOS %s
;
define hidden i32 @"_Z54bar$ompvariant$bar"() {
; CHECK-LABEL: _Z54bar$ompvariant$bar:
; CHECK: // %bb.0: // %entry
; CHECK-NEXT: mov w0, #2
; CHECK-NEXT: ret
entry:
ret i32 2
}