diff options
author | Hans Wennborg <hans@hanshq.net> | 2015-08-31 21:48:52 +0000 |
---|---|---|
committer | Hans Wennborg <hans@hanshq.net> | 2015-08-31 21:48:52 +0000 |
commit | 2151d12ec095ec6c994c9dce31124f65a08720e3 (patch) | |
tree | e4c45a4d74f6643a4646b9b7bed1e241d8ca6d35 /clang/test/CodeGen/builtin-cpu-supports.c | |
parent | 642f6d3ffd1d2e028f234d7867be14fdc2e615ac (diff) | |
download | bcm5719-llvm-2151d12ec095ec6c994c9dce31124f65a08720e3.tar.gz bcm5719-llvm-2151d12ec095ec6c994c9dce31124f65a08720e3.zip |
Fix CHECK directives that weren't checking.
llvm-svn: 246492
Diffstat (limited to 'clang/test/CodeGen/builtin-cpu-supports.c')
-rw-r--r-- | clang/test/CodeGen/builtin-cpu-supports.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/test/CodeGen/builtin-cpu-supports.c b/clang/test/CodeGen/builtin-cpu-supports.c index 2252b3e2b8c..96813923f27 100644 --- a/clang/test/CodeGen/builtin-cpu-supports.c +++ b/clang/test/CodeGen/builtin-cpu-supports.c @@ -10,7 +10,7 @@ int main() { // CHECK: [[LOAD:%[^ ]+]] = load i32, i32* getelementptr inbounds ({ i32, i32, i32, [1 x i32] }, { i32, i32, i32, [1 x i32] }* @__cpu_model, i32 0, i32 3, i32 0) // CHECK: [[AND:%[^ ]+]] = and i32 [[LOAD]], 256 - // CHECK = icmp ne i32 [[AND]], 0 + // CHECK: = icmp ne i32 [[AND]], 0 return 0; } |