forked from OSchip/llvm-project
clang-cl: Add unsupported /Gv option (PR21892)
We don't currently support any of the calling convention options. llvm-svn: 224199
This commit is contained in:
parent
df8f9b6dc9
commit
92391ceb9a
|
@ -253,6 +253,7 @@ def _SLASH_GS : CLFlag<"GS">;
|
|||
def _SLASH_Gs : CLJoined<"Gs">;
|
||||
def _SLASH_GT : CLFlag<"GT">;
|
||||
def _SLASH_GX : CLFlag<"GX">;
|
||||
def _SLASH_Gv : CLFlag<"Gv">;
|
||||
def _SLASH_Gz : CLFlag<"Gz">;
|
||||
def _SLASH_GZ : CLFlag<"GZ">;
|
||||
def _SLASH_H : CLFlag<"H">;
|
||||
|
|
|
@ -248,6 +248,7 @@
|
|||
// RUN: /Gs1000 \
|
||||
// RUN: /GT \
|
||||
// RUN: /GX \
|
||||
// RUN: /Gv \
|
||||
// RUN: /Gz \
|
||||
// RUN: /GZ \
|
||||
// RUN: /H \
|
||||
|
|
Loading…
Reference in New Issue