]> granicus.if.org Git - llvm/commit
[GlobalISel] Remove duplicate function using variadic templates. NFC.
authorAhmed Bougacha <ahmed.bougacha@gmail.com>
Thu, 26 Jan 2017 22:07:37 +0000 (22:07 +0000)
committerAhmed Bougacha <ahmed.bougacha@gmail.com>
Thu, 26 Jan 2017 22:07:37 +0000 (22:07 +0000)
commita28da41a4aa3d797f74009ab74bfffc3ba7e0194
treeeb14e2d65da62a4b301c9925e13a231a180299f8
parente264bcdc06dbae055e081851ee485ac06eb74069
[GlobalISel] Remove duplicate function using variadic templates. NFC.

I think the initial version of r293172 was trying:
  std::forward<Args...>(args)...
which doesn't compile.  This seems like the correct way:
  std::forward<Args>(args)...

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@293214 91177308-0d34-0410-b5e6-96231b3b80d8
utils/TableGen/GlobalISelEmitter.cpp