xref: /llvm-project/clang/test/Driver/uefi-constructed-args.c (revision bb9785a2acf7012fb2a9ae6a86e5cc1b64b11e74)
1fb784953SPrabhuk // RUN: %clang_cl -### --target=x86_64-unknown-uefi -g -- %s 2>&1 \
2fb784953SPrabhuk // RUN:     | FileCheck -check-prefixes=CHECK %s
3fb784953SPrabhuk // CHECK: "-cc1"
4fb784953SPrabhuk // CHECK-SAME: "-triple" "x86_64-unknown-uefi"
5fb784953SPrabhuk // CHECK-SAME: "-mrelocation-model" "pic" "-pic-level" "2"
6fb784953SPrabhuk // CHECK-SAME: "-mframe-pointer=all"
7*bb9785a2SPrabhuk // CHECK-SAME: "-fms-extensions"
8fb784953SPrabhuk // CHECK-NEXT: "-nologo"
9fb784953SPrabhuk // CHECK-SAME: "-subsystem:efi_application"
10fb784953SPrabhuk // CHECK-SAME: "-entry:EfiMain"
11fb784953SPrabhuk // CHECK-SAME: "-tsaware:no"
12fb784953SPrabhuk // CHECK-SAME: "-dll"
13fb784953SPrabhuk // CHECK-SAME: "-debug"
14