Home | History | Annotate | Download | only in Driver
      1 // RUN: %clang -### -S -fwrapv -fno-wrapv -fwrapv %s 2>&1 | FileCheck -check-prefix=CHECK1 %s
      2 // CHECK1: -fwrapv
      3 //
      4 // RUN: %clang -### -S -fstrict-overflow -fno-strict-overflow %s 2>&1 | FileCheck -check-prefix=CHECK2 %s
      5 // CHECK2: -fwrapv
      6 //
      7 // RUN: %clang -### -S -fwrapv -fstrict-overflow %s 2>&1 | FileCheck -check-prefix=CHECK3 %s
      8 // CHECK3: -fwrapv
      9 //
     10 // RUN: %clang -### -S -fno-wrapv -fno-strict-overflow %s 2>&1 | FileCheck -check-prefix=CHECK4 %s
     11 // CHECK4-NOT: -fwrapv
     12