[PATCH] D60974: Clang IFSO driver action.

Saleem Abdulrasool via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Tue May 14 16:12:06 PDT 2019


compnerd added a comment.

How about some cases for:

- global variable which is `static` and `extern`'ed
- global variable which is `static` defined in a function which is `static`
- global variable which is `static` defined in a function which is *not* `inline`
- global variable which is `static` which is `static` `inline` (GNU inline semantics)
- global variable which is `static` which is `static` `inline` (C99 inline semantics)
- virtual functions
- class vtables
- tests for hidden class deriving from hidden class
- tests for hidden class deriving from public class
- tests for public class deriving from public class
- tests for public class deriving from hidden class
- `constexpr` cases


Repository:
  rG LLVM Github Monorepo

CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D60974/new/

https://reviews.llvm.org/D60974





More information about the llvm-commits mailing list