mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-24 11:42:57 +01:00
f935b1ce16
`c++filt` when given no arguments runs as a REPL, decoding each line as a decorated name. Unify the test structure to be more uniform, with the tests for llvm-cxxfilt living under test/tools/llvm-cxxfilt. llvm-svn: 286777
11 lines
191 B
Plaintext
11 lines
191 B
Plaintext
RUN: sed -n 's/^STDIN: //p' %s | llvm-cxxfilt | FileCheck %s
|
|
|
|
STDIN: _Znw
|
|
STDIN: _Znwj
|
|
STDIN: _Znwm
|
|
|
|
CHECK: operator new
|
|
CHECK: operator new(unsigned int)
|
|
CHECK: operator new(unsigned long)
|
|
|