diff options
author | Eric Christopher <echristo@apple.com> | 2011-08-19 23:46:18 +0000 |
---|---|---|
committer | Eric Christopher <echristo@apple.com> | 2011-08-19 23:46:18 +0000 |
commit | 51abac1f2cbc10cf1bf38727e05ea9716b4c79a3 (patch) | |
tree | 6b87523c8222b7c88c6f8dfe8a78984c0297476c | |
parent | 56a89eace2c91a9ef2fe8fb6cf43c630859a2a1e (diff) |
Modify the check line to be happier on windows.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@138152 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | test/CodeGenCXX/2006-11-20-GlobalSymbols.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/CodeGenCXX/2006-11-20-GlobalSymbols.cpp b/test/CodeGenCXX/2006-11-20-GlobalSymbols.cpp index dfca59dc96..34594f43a0 100644 --- a/test/CodeGenCXX/2006-11-20-GlobalSymbols.cpp +++ b/test/CodeGenCXX/2006-11-20-GlobalSymbols.cpp @@ -3,7 +3,7 @@ // functions. Will not assemble if it fails to. // RUN: %clang_cc1 -emit-llvm -g -o - %s | FileCheck %s -// CHECK: @"\01f\01oo" +// CHECK: f\01oo" int foo __asm__("f\001oo"); int bar() { |