f4a2713ac8
Change-Id: Ia40e9ffdf29b5dab2f122f673ff6802a58bc690f
10 lines
322 B
C
10 lines
322 B
C
// Test that we parse and translate the -O option correctly.
|
|
|
|
// RUN: %clang -O -### %s 2>&1 | FileCheck -check-prefix=CHECK-O %s
|
|
// CHECK-O: -O2
|
|
|
|
// RUN: %clang -O0 -### %s 2>&1 | FileCheck -check-prefix=CHECK-O0 %s
|
|
// CHECK-O0: -O0
|
|
|
|
// RUN: %clang -O1 -### %s 2>&1 | FileCheck -check-prefix=CHECK-O1 %s
|
|
// CHECK-O1: -O1
|