http://llvm.org/bugs/show_bug.cgi?id=20107

            Bug ID: 20107
           Summary: r210920 breaks compilation of LLVM for Android.
           Product: libraries
           Version: trunk
          Hardware: PC
                OS: Linux
            Status: NEW
          Severity: normal
          Priority: P
         Component: System Library
          Assignee: [email protected]
          Reporter: [email protected]
                CC: [email protected]
    Classification: Unclassified

lib/Support/Unix/Path.inc:setLastModificationAndAccessTime()

For the '#else' case where HAVE_FUTIMENS and HAVE_FUTIMES are not defined:

    return make_error_code(errc::not_supported)

breaks the build as errc::not_supported is not defined.



This should instead be:

    return make_error_code(errc::function_not_supported)

-- 
You are receiving this mail because:
You are on the CC list for the bug.
_______________________________________________
LLVMbugs mailing list
[email protected]
http://lists.cs.uiuc.edu/mailman/listinfo/llvmbugs

Reply via email to