1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-20 11:33:24 +02:00
llvm-mirror/lib/Transforms/Coroutines
Sam Clegg d68f13d3d6 Remove inline keyword from inline classof methods
The style guide states that the explicit `inline`
should not be used with inline methods.  classof is
very common inline method with a fair amount on
inconsistency:

$ git grep classof ./include | grep inline | wc -l
230
$ git grep classof ./include | grep -v inline | wc -l
257

I chose to target this method rather the larger change
since this method is easily cargo-culted (I did it at
least once).  I considered doing the larger change and
removing all occurrences but that would be a much larger
change.

Differential Revision: https://reviews.llvm.org/D33906

llvm-svn: 306731
2017-06-29 19:35:17 +00:00
..
CMakeLists.txt
CoroCleanup.cpp [coroutines] Call initializePass in coroutine pass constructors 2017-05-31 03:12:42 +00:00
CoroEarly.cpp [coroutines] Call initializePass in coroutine pass constructors 2017-05-31 03:12:42 +00:00
CoroElide.cpp [coroutines] Call initializePass in coroutine pass constructors 2017-05-31 03:12:42 +00:00
CoroFrame.cpp [coroutines] CoroFrame.cpp conform to coding convention (s/repeat/Repeat) (NFC) 2017-05-25 01:07:10 +00:00
CoroInstr.h Remove inline keyword from inline classof methods 2017-06-29 19:35:17 +00:00
CoroInternal.h
CoroSplit.cpp Sort the remaining #include lines in include/... and lib/.... 2017-06-06 11:49:48 +00:00
Coroutines.cpp [coroutines] PR33271: Remove stray coro.save intrinsics during CoroSplit 2017-06-02 02:18:36 +00:00
LLVMBuild.txt