Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(883)

Unified Diff: test/CodeGen/JS/globals.ll

Issue 1151093004: Changes from 3.7 merge to files not in upstream (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-llvm.git@master
Patch Set: Created 5 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: test/CodeGen/JS/globals.ll
diff --git a/test/CodeGen/JS/globals.ll b/test/CodeGen/JS/globals.ll
index 4ccf972e13e7122910d1ad92a3dde08f27ad1ceb..bfd4f0e9d832a59f83b9830a7023951941633ac8 100644
--- a/test/CodeGen/JS/globals.ll
+++ b/test/CodeGen/JS/globals.ll
@@ -15,9 +15,9 @@ target triple = "asmjs-unknown-emscripten"
; CHECK: [[VAR_d:\$[a-z]+]] = (([[VAR_c:\$[a-z]+]]) + ([[VAR_b:\$[a-z]+]]))|0;
; CHECK: return ([[VAR_d:\$[a-z]+]]|0);
define i32 @loads() {
- %t = load i32* @A
- %s = load double* @B
- %u = load i8* @C
+ %t = load i32, i32* @A
+ %s = load double, double* @B
+ %u = load i8, i8* @C
%a = fptoui double %s to i32
%b = sext i8 %u to i32
%c = add i32 %t, %a

Powered by Google App Engine
This is Rietveld 408576698