aboutsummaryrefslogtreecommitdiff
path: root/compiler_wrapper/unsupported_flags.go
diff options
context:
space:
mode:
Diffstat (limited to 'compiler_wrapper/unsupported_flags.go')
-rw-r--r--compiler_wrapper/unsupported_flags.go14
1 files changed, 0 insertions, 14 deletions
diff --git a/compiler_wrapper/unsupported_flags.go b/compiler_wrapper/unsupported_flags.go
deleted file mode 100644
index 48fee2f5..00000000
--- a/compiler_wrapper/unsupported_flags.go
+++ /dev/null
@@ -1,14 +0,0 @@
-// Copyright 2019 The Chromium OS Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-package main
-
-func checkUnsupportedFlags(cmd *command) error {
- for _, arg := range cmd.Args {
- if arg == "-fstack-check" {
- return newUserErrorf(`option %q is not supported; crbug/485492`, arg)
- }
- }
- return nil
-}