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

            Bug ID: 21542
           Summary: Division by zero not found for floating point values
           Product: clang
           Version: trunk
          Hardware: PC
                OS: Linux
            Status: NEW
          Severity: normal
          Priority: P
         Component: Static Analyzer
          Assignee: [email protected]
          Reporter: [email protected]
                CC: [email protected]
    Classification: Unclassified

Example on: http://clang-analyzer.llvm.org/available_checks.html works but the
following short snippet is not detected:

int main()
{
   double y = 0.0;
   double x = 1.0 / y; // not found

   return 0;
}

-- 
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