1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-20 19:42:54 +02:00
llvm-mirror/test/tools/llvm-cxxfilt/noargs.test
Saleem Abdulrasool f935b1ce16 llvm-cxxfilt: support reading from stdin
`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
2016-11-13 20:43:38 +00:00

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)