diff options
Diffstat (limited to 'test/Driver/code-model.c')
-rw-r--r-- | test/Driver/code-model.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/test/Driver/code-model.c b/test/Driver/code-model.c index 001ca606cde7c..dcb54e972a507 100644 --- a/test/Driver/code-model.c +++ b/test/Driver/code-model.c @@ -1,9 +1,11 @@ +// RUN: %clang -### -c -mcmodel=tiny %s 2>&1 | FileCheck -check-prefix CHECK-TINY %s // RUN: %clang -### -c -mcmodel=small %s 2>&1 | FileCheck -check-prefix CHECK-SMALL %s // RUN: %clang -### -S -mcmodel=kernel %s 2>&1 | FileCheck -check-prefix CHECK-KERNEL %s // RUN: %clang -### -c -mcmodel=medium %s 2>&1 | FileCheck -check-prefix CHECK-MEDIUM %s // RUN: %clang -### -S -mcmodel=large %s 2>&1 | FileCheck -check-prefix CHECK-LARGE %s // RUN: not %clang -c -mcmodel=lager %s 2>&1 | FileCheck -check-prefix CHECK-INVALID %s +// CHECK-TINY: "-mcode-model" "tiny" // CHECK-SMALL: "-mcode-model" "small" // CHECK-KERNEL: "-mcode-model" "kernel" // CHECK-MEDIUM: "-mcode-model" "medium" |