Remove PR5061 workaround.

llvm-svn: 83046
This commit is contained in:
Anders Carlsson 2009-09-29 05:36:21 +00:00
parent 8f4fd60c47
commit 025893300c
1 changed files with 2 additions and 6 deletions

View File

@ -12,19 +12,15 @@ namespace std {
template<typename T> struct allocator { };
}
// FIXME: typename is really not allowed here, but it's kept
// as a workaround for PR5061.
// CHECK: define void @_Z1fSaIcESaIiE
void f(typename std::allocator<char>, typename std::allocator<int>) { }
void f(std::allocator<char>, std::allocator<int>) { }
namespace std {
template<typename T, typename U, typename V> struct basic_string { };
}
// FIXME: typename is really not allowed here, but it's kept
// as a workaround for PR5061.
// CHECK: define void @_Z1fSbIcciE
void f(typename std::basic_string<char, char, int>) { }
void f(std::basic_string<char, char, int>) { }
namespace std {
template<typename T> struct char_traits { };