Fix buildbot failure on LLP64 platforms like MSVC x86_64.

llvm-svn: 222848
This commit is contained in:
Richard Smith 2014-11-26 19:37:39 +00:00
parent 315e7eca1b
commit 42ea81f655
1 changed files with 1 additions and 1 deletions

View File

@ -52,7 +52,7 @@ void Func() {
namespace LabelAddrDiff {
void f() {
a: b: A<int, __builtin_constant_p(true) ? (long)&&b - (long)&&a : 0> s; // expected-error {{label address difference}}
a: b: A<int, __builtin_constant_p(true) ? (__INTPTR_TYPE__)&&b - (__INTPTR_TYPE__)&&a : 0> s; // expected-error {{label address difference}}
};
}