Unbreak the build. Fallout from r170019.

llvm-svn: 170033
diff --git a/llvm/unittests/Support/YAMLIOTest.cpp b/llvm/unittests/Support/YAMLIOTest.cpp
index c24114a..5c9db01 100644
--- a/llvm/unittests/Support/YAMLIOTest.cpp
+++ b/llvm/unittests/Support/YAMLIOTest.cpp
@@ -552,7 +552,7 @@
     }
 
     static StringRef input(StringRef scalar, void *, MyNumber &value) {
-      int64_t n;
+      long long n;
       if ( getAsSignedInteger(scalar, 0, n) )
         return "invalid number";
       value = n;