forked from OSchip/llvm-project
[COFF, ARM64] Fix location of ARM64 CodeView test
ARM64 CodeView test was incorrectly put under test/DebugInfo/COFF folder which runs for all all architectures. This fix moves it to a subfolder AArch64 with lit.local.cfg which specify it supports AArch64 only. llvm-svn: 362283
This commit is contained in:
parent
099eca832e
commit
2258ecc2aa
|
@ -1,4 +1,4 @@
|
|||
; RUN: llc < %s -filetype=obj | llvm-readobj --codeview - | FileCheck %s --check-prefix=OBJ
|
||||
; RUN: llc < %s -mtriple=arm64-windows -filetype=obj | llvm-readobj --codeview - | FileCheck %s --check-prefix=OBJ
|
||||
|
||||
; Generated from:
|
||||
; volatile int x;
|
|
@ -0,0 +1,3 @@
|
|||
if not 'AArch64' in config.root.targets:
|
||||
config.unsupported = True
|
||||
|
Loading…
Reference in New Issue