mirror of
https://github.com/RPCSX/llvm.git
synced 2024-12-04 18:06:49 +00:00
16fb1632a1
As a follow-up to r235955, actually support up to 65535 arguments in a subprogram. r235955 missed assembly support, having only tested the new limit via C++ unit tests. Code patch by Amjad Aboud. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@238854 91177308-0d34-0410-b5e6-96231b3b80d8
7 lines
249 B
LLVM
7 lines
249 B
LLVM
; RUN: not llvm-as < %s 2>&1 | FileCheck %s
|
|
|
|
!0 = !DILocalVariable(tag: DW_TAG_arg_variable, scope: !{}, arg: 0)
|
|
|
|
; CHECK: <stdin>:[[@LINE+1]]:66: error: expected unsigned integer
|
|
!1 = !DILocalVariable(tag: DW_TAG_arg_variable, scope: !{}, arg: -1)
|