From b088ff661763a1486392c89cdb5a884d22cad28d Mon Sep 17 00:00:00 2001 From: David Blaikie Date: Wed, 12 Dec 2012 22:14:32 +0000 Subject: Unbreak the build. Fallout from r170019. llvm-svn: 170033 --- llvm/unittests/Support/YAMLIOTest.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'llvm/unittests') diff --git a/llvm/unittests/Support/YAMLIOTest.cpp b/llvm/unittests/Support/YAMLIOTest.cpp index c24114a6951..5c9db01a06f 100644 --- a/llvm/unittests/Support/YAMLIOTest.cpp +++ b/llvm/unittests/Support/YAMLIOTest.cpp @@ -552,7 +552,7 @@ namespace yaml { } static StringRef input(StringRef scalar, void *, MyNumber &value) { - int64_t n; + long long n; if ( getAsSignedInteger(scalar, 0, n) ) return "invalid number"; value = n; -- cgit v1.2.3