mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-22 18:54:02 +01:00
3defb31026
When committing dba420bc05ae, I missed that a darwin-specific change had been recently introduced into llvm-cxxfilt, which my change ignored and consequently broke the darwin build bot. This change fixes this issue as well as improving naming/commenting of things related to this point so that people are less likely to run into the same issue as I did.
9 lines
189 B
Plaintext
9 lines
189 B
Plaintext
UNSUPPORTED: system-darwin
|
|
|
|
## Show that on non-darwin systems, the default is to strip the leading
|
|
## underscore.
|
|
|
|
RUN: llvm-cxxfilt __Z1fv _Z2bav | FileCheck %s
|
|
CHECK: __Z1fv
|
|
CHECK: ba()
|