forked from OSchip/llvm-project
Fix testcase when building on darwin
Explicitely specify a target to avoid "_" prefixes on the names. llvm-svn: 253741
This commit is contained in:
parent
5bc88be11e
commit
5c3fccc313
|
@ -1,5 +1,5 @@
|
|||
// RUN: %clang -S %s -o - | FileCheck %s -check-prefix=ALLOWED
|
||||
// RUN: not %clang -std=c89 -S %s -o - 2>&1 | FileCheck %s -check-prefix=DENIED
|
||||
// RUN: %clang --target=x86_64--linux-gnu -S %s -o - | FileCheck %s -check-prefix=ALLOWED
|
||||
// RUN: not %clang --target=x86_64--linux-gnu -std=c89 -S %s -o - 2>&1 | FileCheck %s -check-prefix=DENIED
|
||||
int \uaccess = 0;
|
||||
// ALLOWED: "곎ss":
|
||||
// ALLOWED-NOT: "\uaccess":
|
||||
|
|
Loading…
Reference in New Issue